import { InputSize } from '@mezzanine-ui/core/input'; import { NativeElementPropsWithoutKeyAndRef } from '../../utils/jsx-types'; import { IconDefinition } from '@mezzanine-ui/icons'; export interface ActionButtonProps extends Omit, 'type' | 'disabled'> { /** * Whether the action button is disabled. */ disabled?: boolean; /** * The icon of action button. * @default CopyIcon */ icon?: IconDefinition; /** * The label of action button. * @default 'Copy' */ label?: string; /** * The size of action button. * @default 'main' */ size?: InputSize; } declare const ActionButton: import("react").ForwardRefExoticComponent>; export default ActionButton;