import { PageProps } from './types'; export declare function generateStaticParams(context: { params: T; }): Promise>>; export declare function generateMetadata(props: PageProps, parent?: any): Promise<{ title: string; description: string; }>; export declare class NotFoundError extends Error { constructor(); } export declare function notFound(): never; export declare class RedirectError extends Error { readonly url: string; readonly permanent: boolean; constructor(url: string, permanent?: boolean); } export declare function redirect(url: string): never; export declare function permanentRedirect(url: string): never; //# sourceMappingURL=compat.d.ts.map