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