import React from 'react'; import type { Props as ButtonProps } from '../Button/Button'; interface Props extends Pick { /** * Allows to pass aria label for screen readers */ 'aria-label'?: string; } /** @visibleName Button Close */ declare const ButtonClose: ({ "data-testid": dataTestId, "aria-label": ariaLabel, ...props }: Props) => React.JSX.Element; /** @component */ export default ButtonClose;