/// export interface CloseButtonInterface { onClick: () => void; color?: string; } declare const CloseButton: ({ onClick, color }: CloseButtonInterface) => JSX.Element; export default CloseButton;