import type { FC } from 'react'; import React from 'react'; export interface NotificationContextProps { classNames?: { notice?: string; list?: string; }; } export declare const NotificationContext: React.Context; export interface NotificationProviderProps extends NotificationContextProps { children: React.ReactNode; } declare const NotificationProvider: FC; export default NotificationProvider;