export type TabsVariant = 'default' | 'pills'; export type TabsSize = 'sm' | 'md'; export type Tab = { value: TValue; label: string; /** Non-interactive — click does nothing. */ disabled?: boolean; };