import * as React from 'react'; import { IconProps } from '../Icon'; import { ButtonProps } from './Button'; export declare type LocalButtonCloseProps = { iconProps?: Omit; /** Accessible label for the button. Default: `"Close"` */ label?: string; }; export declare type ButtonCloseProps = ButtonProps & LocalButtonCloseProps; export declare const ButtonClose: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };