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

type AppRoutes = "/" | "/admin" | "/deploy-targets" | "/deploy-targets/new" | "/deployments" | "/login" | "/projects/[id]" | "/projects/new"
type AppRouteHandlerRoutes = "/api/admin/cleanup" | "/api/admin/system" | "/api/auth/login" | "/api/auth/logout" | "/api/deploy-targets" | "/api/deploy-targets/[id]" | "/api/projects" | "/api/projects/[id]" | "/api/projects/[id]/deploy" | "/api/projects/[id]/rollback" | "/api/scan" | "/api/sse" | "/api/webhook/git"
type PageRoutes = never
type LayoutRoutes = "/"
type RedirectRoutes = never
type RewriteRoutes = never
type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes | AppRouteHandlerRoutes


interface ParamMap {
  "/": {}
  "/admin": {}
  "/api/admin/cleanup": {}
  "/api/admin/system": {}
  "/api/auth/login": {}
  "/api/auth/logout": {}
  "/api/deploy-targets": {}
  "/api/deploy-targets/[id]": { "id": string; }
  "/api/projects": {}
  "/api/projects/[id]": { "id": string; }
  "/api/projects/[id]/deploy": { "id": string; }
  "/api/projects/[id]/rollback": { "id": string; }
  "/api/scan": {}
  "/api/sse": {}
  "/api/webhook/git": {}
  "/deploy-targets": {}
  "/deploy-targets/new": {}
  "/deployments": {}
  "/login": {}
  "/projects/[id]": { "id": string; }
  "/projects/new": {}
}


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]>
  }
}
