type ResolvePageOptions = {
    pageModule: Record<string, any>;
    path: string;
    url: string;
    exportName: string;
};
type ResolvePageResult = {
    type: "success";
    key: string;
    Page: any;
} | {
    type: "error";
    error: Error;
} | {
    type: "skip";
};
export declare function resolvePage({ pageModule, path, url, exportName, }: ResolvePageOptions): Promise<ResolvePageResult>;
export {};
//# sourceMappingURL=resolvePage.d.ts.map