import type { SanitizedConfig } from "@dawncms/core"; import type { InitPageResult } from "../types"; type Args = { config: Promise | SanitizedConfig; redirectUnauthenticatedUser?: boolean; route: string; searchParams: { [key: string]: string | string[] | undefined; }; }; export declare const initPage: ({ config: configPromise, redirectUnauthenticatedUser, route, searchParams, }: Args) => Promise; export {};