import { default as React } from 'react'; import { TypographyProps } from '../../ui/typography'; import { ColorType } from '../../../utils/GenerateColorStyle'; type TextTabsType = 'fixed' | 'fit-content'; type TextTabsProps = React.HTMLAttributes & { widthType?: TextTabsType; }; declare const TextTabsContainer: React.FC; type TextTabsItemProps = TypographyProps & { item: { label: string; value: string; hasBadge?: boolean; }; value: string; onClick: (value: string) => void; colorType: ColorType; }; declare const TextTabsItem: ({ item, value, onClick, className, colorType, ...props }: TextTabsItemProps) => React.JSX.Element; export type { TextTabsItemProps, TextTabsProps }; export { TextTabsContainer, TextTabsItem }; //# sourceMappingURL=index.d.ts.map