/// export declare namespace ITabs { interface Props { activeTab?: string; tabs: Tab[]; tabHeight?: string; fullWidth?: boolean; showNeutralBorder?: boolean; onTabChange?: (tab: Tab) => void; onTabClick?: (tab: Tab, event?: React.MouseEvent) => void; onLeftIconClick?: (tab: Tab, event?: React.MouseEvent) => void; onRightIconClick?: (tab: Tab, event?: React.MouseEvent) => void; onUnreadCountClick?: (tab: Tab, event?: React.MouseEvent) => void; tabClassName?: string; tabBarHeight?: string; tabBarHighlightHeight?: string; } interface Tab { id?: string; title: string; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; unreadCount?: number; } }