import React from 'react'; import { type RelatedContentProps } from '@/components/Menus/RelatedContent'; interface TableOfContentsItem { text: string; id: string; tag: string; } export declare const MainPageSection: ({ children, pageId, tableOfContents, edit, path, relatedContent, }: { children: React.ReactNode; pageId: number; tableOfContents?: TableOfContentsItem[]; edit?: boolean; path?: string; relatedContent?: RelatedContentProps[]; }) => import("react/jsx-runtime").JSX.Element; export {};