import { ComponentProps } from 'react';
import { IconProps } from '../Icon';
export type ButtonWithIconProps = {
    enabled?: boolean;
    variant?: string;
} & ComponentProps<'button'> & IconProps;
export declare const IconButton: import("react").ForwardRefExoticComponent<Omit<ButtonWithIconProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
