import { type PageDataLegacy } from '@rspress/shared'; export type Page = PageDataLegacy['page']; export declare function warmPageData(routePath: string, data: Page): void; export declare function consumeCachedPageData(routePath: string): Page | undefined; export declare function setCurrentPageData(routePath: string, data: Page): void; export declare function initPageData(routePath: string): Promise;