import type { FC, ReactNode } from 'react'; import { type TestableProps } from '../../utils/testId'; import type { TabsSize, TabsVariant } from './types'; export interface TabsProps extends TestableProps { children: ReactNode; size?: TabsSize; variant?: TabsVariant; value?: string; defaultValue?: string; lazyMount?: boolean; unmountOnExit?: boolean; asChild?: boolean; onChange?: (value: string) => void; } export declare const Tabs: FC;