import { type IconProps } from '../Icon'; import type { ButtonProps } from './Button'; type ButtonSize = { mini?: boolean; tiny?: boolean; small?: boolean; }; export type ActionButtonProps = ButtonProps & ButtonSize & { icon: IconProps['name']; }; declare const ActionButton: import("react").ForwardRefExoticComponent, "is" | "size" | "className"> & ButtonSize & { icon: IconProps["name"]; } & import("react").RefAttributes>; export default ActionButton; //# sourceMappingURL=ActionButton.d.ts.map