/// export interface TabItemWrapperProps { placement: 'top' | 'bottom'; isActive: boolean; } export interface LabelNodeProps { isActive?: boolean; } export interface ItemTabsProps { label: string | React.ElementType; iconName?: string; key: string; children: React.ElementType; width?: string; } export interface TabsProps { defaultActiveKey: string; placement?: 'top' | 'bottom'; items: ItemTabsProps[]; onChange: (key: string) => void; }