import { Tab } from './Tabs'; export type ContentTabItem = Tab; interface ContentTabProps { tabs: ContentTabItem[]; current: string | null; onChange: (id: string) => void; } export default function ContentTab({ tabs, current, onChange }: ContentTabProps): import("react").JSX.Element | null; export {};