import * as React from 'react';
export interface NotificationProps {
    autoHideDuration?: number;
    className?: string;
}
export declare const Notification: React.FC<NotificationProps>;
