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