import React from 'react'; import type { Section } from '@teambit/component'; import type { APIReferenceUI } from '@teambit/api-reference'; import type { TitleBadgeSlot, OverviewOptionsSlot } from './overview'; import type { DocsUI, UsePreviewSandboxSlot, UsePreviewPropsSlot } from './docs.ui.runtime'; export declare class OverviewSection implements Section { /** * title badge slot. */ private titleBadgeSlot; private overviewOptionsSlot; private docs; private apiRef; private usePreviewSandboxSlot; private usePreviewPropsSlot; constructor( /** * title badge slot. */ titleBadgeSlot: TitleBadgeSlot, overviewOptionsSlot: OverviewOptionsSlot, docs: DocsUI, apiRef: APIReferenceUI, usePreviewSandboxSlot: UsePreviewSandboxSlot, usePreviewPropsSlot: UsePreviewPropsSlot); navigationLink: { href: string; exact: boolean; children: string; }; route: { index: boolean; element: React.JSX.Element; }; order: number; }