import { Page } from '@/payload-types'; interface TableOfContentsItem { text: string; id: string; tag: string; } export declare function getTableOfContents(page: Page): { tableOfContents: TableOfContentsItem[]; contentWithIds: any[]; }; export {};