///
import { OUIAProps } from '../../helpers';
export interface TabActionProps extends Omit, 'ref' | 'type' | 'size'>, OUIAProps {
/** Content rendered in the tab action */
children?: React.ReactNode;
/** Additional classes added to the tab action span */
className?: string;
/** Click callback for tab action button */
onClick?: (event: React.MouseEvent) => void;
/** Flag indicating if the tab action is disabled */
isDisabled?: boolean;
/** Accessible label for the tab action */
'aria-label'?: string;
/** @hide Callback for the section ref */
innerRef?: React.Ref;
}
export declare const TabAction: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=TabAction.d.ts.map