import { Dispatch, ReactNode, SetStateAction } from 'react'; export type TabsItem = { label: ReactNode; value: Value; prefix?: ReactNode; tooltip?: ReactNode; disabled?: boolean; className?: string; testId?: string; }; export type TabsProps = { items: TabsItem[]; onChange?: ((value: Value) => void) | Dispatch>; value?: Value; size?: 'small' | 'medium'; type?: 'primary' | 'secondary' | 'tertiary'; direction?: 'horizontal' | 'vertical'; className?: string; testId?: string; }; export declare const Tabs: ({ testId, items, className, onChange, type, size, direction, value, }: TabsProps) => JSX.Element; //# sourceMappingURL=Tabs.d.ts.map