import { MouseEventHandler, ButtonHTMLAttributes } from 'react';
type ClosingButtonColor = 'primary' | 'brand' | 'white';
export type ClosingButtonSize = 'default' | 'small';
export type ClosingButtonIconSize = 18 | 24;
export interface ClosingButtonProps extends ButtonHTMLAttributes {
/**
* Additional classes to apply custom styles to the ClosingButton.
*/
className?: string;
/**
* Size of the ClosingButton
* @default default
*/
size?: ClosingButtonSize;
/**
* Event handler for the button click event. Triggered when the user clicks on the close button.
*/
onClick?: MouseEventHandler;
title?: string;
color?: ClosingButtonColor;
iconSize?: ClosingButtonIconSize;
}
export declare const ClosingButton: (props: ClosingButtonProps) => JSX.Element;
export default ClosingButton;