import { BaseGlassProps, GlassVariant } from '../../types/common'; export interface TabItem { id: string; label: string; content: React.ReactNode; disabled?: boolean; icon?: React.ReactNode; } export interface LiquidTabsProps extends BaseGlassProps { tabs: TabItem[]; activeTab?: string; onTabChange?: (tabId: string) => void; variant?: GlassVariant; orientation?: 'horizontal' | 'vertical'; size?: 'sm' | 'md' | 'lg'; className?: string; style?: React.CSSProperties; }