import * as React from "react"; declare type NotificationType = "success" | "failure" | "warning"; interface NotificationProps { type: NotificationType; title: React.ReactNode; content?: React.ReactNode; footer?: React.ReactNode; autoClose?: boolean; onClose: () => void; } export declare const Notification: ({ type, title, content, footer, autoClose, onClose, ...props }: NotificationProps) => JSX.Element; export {};