import React from 'react'; import { IconProps } from '../icon/interfaces'; interface TabButtonProps { text: string; iconName: IconProps.Name; active: boolean; disabled: boolean; tabIndex?: number; ariaHidden?: boolean; ariaLabel?: string; paneId: string; isRefresh: boolean; className: string; onClick: () => void; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; } export declare const TabButton: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=tab-button.d.ts.map