export type TableOfContentsSectionType = {
    title: string;
    slug: string;
    depth: number;
    children: TableOfContentsSectionType[];
    tabId?: string;
    viewId?: string;
};
