import { ComponentProps, FC } from 'react'; import { BastTabsItem } from './BastTabsItem'; type TBastTabs = FC, 'className' | 'style' | 'children'> & { iconOnly?: boolean; disabled?: boolean; borders?: 'round-top' | 'round-bottom' | 'round-all'; active?: string; }> & { Item: typeof BastTabsItem; }; declare const BastTabs: TBastTabs; export { BastTabs };