/// import { ToastProps } from "react-toastify/dist/types"; export declare type CaNotificationProps = { intent?: "success" | "warning" | "danger" | "info" | "default" | null; title?: string | null; description: string; closeToast?: ToastProps["closeToast"]; }; declare function CaNotification({ title, description, intent, closeToast }: CaNotificationProps): JSX.Element; declare namespace CaNotification { var defaultProps: { intent: string; title: null; }; } export default CaNotification;