export interface TabListAttributes { role: string; id: string; 'aria-labelledby'?: string; 'aria-label'?: string; 'aria-owns'?: string; 'aria-orientation': 'horizontal' | 'vertical'; 'aria-disabled'?: boolean; } export interface TabAttributes { id: string; role: string; tabIndex?: number; disabled?: boolean; 'aria-selected': boolean | 'false' | 'true'; 'aria-controls'?: string; 'aria-disabled'?: boolean | 'false' | 'true'; } export interface TabPanelAttributes { id: string; role: string; 'aria-labelledby': string; tabIndex?: number; }