/// import { JengaCardProps } from '../../content/Card/Card'; export interface JengaNotificationProps extends JengaCardProps { type?: 'success' | 'note' | 'danger'; onClose?: () => void; } export declare function Notification(allProps: JengaNotificationProps): JSX.Element;