export interface ITabs { children?: any; tabIndex?: number; fullWidth?: boolean; scrollable?: boolean; className?: string; alignment?: Alignment; } export interface TabIdProps { tabId: string; tabPanelId: string; } export declare type Direction = 'left' | 'right'; export declare type Alignment = 'left' | 'center' | 'right'; export interface HighlightProps { leftOffset?: number; width?: number; } export interface IArrowButton { direction: Direction; disabled?: boolean; onClick?: any; }