interface Metadata { title?: string; description?: string; [key: string]: unknown; } export interface RootPageProps { config: { collections?: unknown[]; globals?: unknown[]; [key: string]: unknown; }; params: Promise<{ segments?: string[]; }>; searchParams: Promise<{ [key: string]: string | string[]; }>; importMap?: Record; } export interface NotFoundPageProps { config: { collections?: unknown[]; globals?: unknown[]; [key: string]: unknown; }; params: Promise<{ segments?: string[]; }>; searchParams: Promise<{ [key: string]: string | string[]; }>; importMap?: Record; } export declare function RootPage({ config }: RootPageProps): import("react").JSX.Element; export declare function NotFoundPage(): import("react").JSX.Element; export declare function generatePageMetadata(): Metadata; export {}; //# sourceMappingURL=page.d.ts.map