import { ReactNode } from 'react'; export declare namespace IAlert { type AlertType = 'success' | 'error' | 'warning' | 'info' | 'promise' | 'alert'; interface AlertStyled { type: AlertType; width?: string; minHeight?: string; } type ColorFamily = { class: string; member: string; }; interface Props { width?: string; minHeight?: string; message: string | ReactNode; type?: AlertType; showActionBtn?: boolean; actionBtnLabel?: string; showCloseBtn?: boolean; onActionBtnClick?: () => void; onClose?: () => void; } }