export interface CloseProps { /** Function is called when user clicks the button */ onClick?: (e?: React.MouseEvent) => void; /** Sets the aria-label of the button */ ariaLabel?: string; /** Sets the data-testid attribute. */ testId?: string; /** Ref passed to the button element */ ref?: React.Ref; } declare const Close: React.FC; export default Close;