// This file is generated automatically by Next.js
// Do not edit this file manually

type AppRoutes = "/" | "/articles" | "/articles/[id]" | "/articles/import" | "/articles/new" | "/caisse" | "/chat" | "/clients" | "/clients/[id]" | "/dashboard" | "/login" | "/rapport" | "/settings" | "/setup" | "/vente"
type AppRouteHandlerRoutes = "/api/articles" | "/api/articles/[id]" | "/api/articles/[id]/image" | "/api/auth/login" | "/api/caisse" | "/api/caisse/fermer" | "/api/caisse/ventes" | "/api/categories" | "/api/charges" | "/api/chat" | "/api/clients" | "/api/clients/[id]" | "/api/rapport" | "/api/retraits" | "/api/setup" | "/api/shops" | "/api/users" | "/api/ventes"
type PageRoutes = never
type LayoutRoutes = "/"
type RedirectRoutes = never
type RewriteRoutes = never
type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes | AppRouteHandlerRoutes


interface ParamMap {
  "/": {}
  "/api/articles": {}
  "/api/articles/[id]": { "id": string; }
  "/api/articles/[id]/image": { "id": string; }
  "/api/auth/login": {}
  "/api/caisse": {}
  "/api/caisse/fermer": {}
  "/api/caisse/ventes": {}
  "/api/categories": {}
  "/api/charges": {}
  "/api/chat": {}
  "/api/clients": {}
  "/api/clients/[id]": { "id": string; }
  "/api/rapport": {}
  "/api/retraits": {}
  "/api/setup": {}
  "/api/shops": {}
  "/api/users": {}
  "/api/ventes": {}
  "/articles": {}
  "/articles/[id]": { "id": string; }
  "/articles/import": {}
  "/articles/new": {}
  "/caisse": {}
  "/chat": {}
  "/clients": {}
  "/clients/[id]": { "id": string; }
  "/dashboard": {}
  "/login": {}
  "/rapport": {}
  "/settings": {}
  "/setup": {}
  "/vente": {}
}


export type ParamsOf<Route extends Routes> = ParamMap[Route]

interface LayoutSlotMap {
  "/": never
}


export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap, AppRouteHandlerRoutes }

declare global {
  /**
   * Props for Next.js App Router page components
   * @example
   * ```tsx
   * export default function Page(props: PageProps<'/blog/[slug]'>) {
   *   const { slug } = await props.params
   *   return <div>Blog post: {slug}</div>
   * }
   * ```
   */
  interface PageProps<AppRoute extends AppRoutes> {
    params: Promise<ParamMap[AppRoute]>
    searchParams: Promise<Record<string, string | string[] | undefined>>
  }

  /**
   * Props for Next.js App Router layout components
   * @example
   * ```tsx
   * export default function Layout(props: LayoutProps<'/dashboard'>) {
   *   return <div>{props.children}</div>
   * }
   * ```
   */
  type LayoutProps<LayoutRoute extends LayoutRoutes> = {
    params: Promise<ParamMap[LayoutRoute]>
    children: React.ReactNode
  } & {
    [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode
  }

  /**
   * Context for Next.js App Router route handlers
   * @example
   * ```tsx
   * export async function GET(request: NextRequest, context: RouteContext<'/api/users/[id]'>) {
   *   const { id } = await context.params
   *   return Response.json({ id })
   * }
   * ```
   */
  interface RouteContext<AppRouteHandlerRoute extends AppRouteHandlerRoutes> {
    params: Promise<ParamMap[AppRouteHandlerRoute]>
  }
}
