import type { AlertProps } from "react-bootstrap/Alert"; export interface IAlertProps extends AlertProps { icon?: boolean; onClose?: () => void; closeButton?: boolean; closeLabel?: string; show?: boolean; }