import React, { HTMLAttributes } from 'react';
import { BaseProps } from '../Base';
export declare const DEFAULT_DELAY: number;
declare enum Severity {
ERROR = "error",
SUCCESS = "success",
INFO = "info",
WARNING = "warning"
}
export interface NotificationProps extends Omit, 'css'>, BaseProps {
/** The severity of the notification. */
severity?: Severity;
/** The message to display in the notification. */
message?: string;
/** The callback fired when a notification is closed. */
onClose: () => void;
/** Whether or not the notification should get closed automatically. */
autoClose?: boolean;
/** The auto close delay in milliseconds, it defaults to `6000` (6s). */
autoCloseDelay?: number;
/** CSS classname to apply custom styles. */
className?: string;
}
export declare const Notification: React.FC;
export default Notification;