import { FC, ReactNode } from 'react'; export interface AlertProps { title?: string; text: ReactNode; backgroundColor?: string; isOpen?: boolean; isDismissable?: boolean; handleClose?: () => void; displayInfoIcon?: boolean; } declare const Alert: FC; export default Alert;