import React from "react"; export interface AdminAppContextType { name: string; updateTitle: (title: string | null) => void; registerTitleUpdater: (fn: (title: string | null) => void) => void; } export declare const AdminAppContext: React.Context;