import React from 'react'; import { IGlyph } from '../icon'; interface ITab { id?: string; name: string; icon?: IGlyph; isDisabled?: boolean; } /** * The Tab component. */ export interface ITabProps { /** Which one is active? This is controlled by the *outside* */ activeIdx: number; /** On click action for the button. */ onClick: (tabIdx: number) => void; /** Mandatory list of tabs */ tabs: ITab[]; /** className for container */ className?: string; } export declare const Tabs: React.FC; export {};