import { default as React, ReactNode } from 'react';
import { ToastProps } from '../../components/atoms/Toast';
interface NotificationContextType {
    showNotification: (toast: Omit<ToastProps, 'isShowing' | 'onClose'> & {
        duration?: number;
    }) => void;
}
export declare const NotificationProvider: React.FC<{
    children: ReactNode;
}>;
export declare const useNotificationContext: () => NotificationContextType;
export {};
