@toolpad/core
Version:
Dashboard framework powered by Material UI.
10 lines • 344 B
TypeScript
import * as React from 'react';
import type { ShowNotification, CloseNotification } from './useNotifications';
/**
* @ignore - internal component.
*/
export interface NotificationsContextValue {
show: ShowNotification;
close: CloseNotification;
}
export declare const NotificationsContext: React.Context<NotificationsContextValue | null>;