import type { ReactTabsFunctionComponent, TabListProps, TabPanelProps, TabProps, TabsProps } from 'react-tabs';
declare const CustomTab: ReactTabsFunctionComponent<TabProps & {
    hasErrors?: boolean;
}>;
declare const CustomTabList: ReactTabsFunctionComponent<TabListProps>;
declare const CustomTabs: ReactTabsFunctionComponent<TabsProps>;
declare const CustomTabPanel: ReactTabsFunctionComponent<TabPanelProps>;
export { CustomTab as Tab, CustomTabList as TabList, CustomTabPanel as TabPanel, CustomTabs as Tabs };
