import { FC } from 'react';
interface TabProps {
    tabs: string[];
    onClick: (tab: string) => void;
}
declare const Tab: FC<TabProps>;
export default Tab;
