import './doc.scss'; export declare function DocContent({ components, isOverviewPage, afterDocContent, beforeDocContent, }: { components: Record> | undefined; isOverviewPage?: boolean; /** * Optional React node rendered before the main document content. * Can be used for banners, notices, or custom elements at the top of the page. */ beforeDocContent?: React.ReactNode; /** * Optional React node rendered after the main document content. * Can be used for footers, navigation, or other content at the bottom of the page. */ afterDocContent?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;