import { FC } from "react"; export interface NotificationProps extends React.HTMLAttributes { onClose?: () => void; withCloseButton?: boolean; variant?: "static" | "modal"; autoHide?: boolean; autoHideDuration?: number; position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | "center"; title?: string; description?: string; } export declare const Notification: FC; export default Notification;