export interface NotificationInfo { color: 'error' | 'success'; message: string; } interface NotificationContextValue { showNotification(this: void, notification: NotificationInfo): void; } export declare const NotificationContext: import("react").Context; export {};