import type { FC, ReactNode } from 'react'; interface INotificationProviderProps { children: ReactNode; } export declare const NotificationProvider: FC; export {};