UNPKG

478 BTypeScriptView Raw
1import type { FC } from 'react';
2import React from 'react';
3export interface NotificationContextProps {
4 classNames?: {
5 notice?: string;
6 list?: string;
7 };
8}
9export declare const NotificationContext: React.Context<NotificationContextProps>;
10export interface NotificationProviderProps extends NotificationContextProps {
11 children: React.ReactNode;
12}
13declare const NotificationProvider: FC<NotificationProviderProps>;
14export default NotificationProvider;