/// import { Page } from "../pages"; interface PageContextType { currentPage: Page; setCurrentPage: React.Dispatch>; } export declare const PageContextProvider: React.FC>; export declare const usePageContext: () => PageContextType; export {};