export interface CloseProps { /** Keeps the icon small for all screen sizes */ small?: boolean; /** 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; /** Adds custom classes to the element. */ className?: string; /** Gives color to the svg */ color?: 'blueberry' | 'black' | 'plum'; /** Ref that is passed to the component */ ref?: React.Ref; } declare const Close: React.FC; export default Close;