import { FC } from 'react'; declare type Props = { tabs: { label: string; id: string; }[]; activeTab?: string; onClick?: (tabId: string) => void; }; declare const Tabs: FC; export default Tabs;