import type { ButtonHTMLAttributes, FC, Ref } from 'react'; export interface AlertCloseProps extends Omit, 'children'> { ref?: Ref; /** Callback when the close button is clicked */ onClick?: () => void; } /** * Close button component for Alert. * * Renders a close button with an X icon and "Close" tooltip. */ export declare const AlertClose: FC;