import { AppAction } from "../types/AppAction"; export interface PageContextType { registerTitleKey: (titleKey: string) => void; registerDescriptionKey: (descriptionKey: string) => void; registerRenderPreActions: (renderPreActions: () => React.JSX.Element) => void; registerActions: (actions: AppAction[]) => void; } export declare const PageContext: import("react").Context; //# sourceMappingURL=page.context.d.ts.map