import React from 'react'; import { Interpreter } from 'xstate'; import { NotificationContext, NotificationEvent, NotificationSchema } from './notificationMachine'; import { NotificationsSend, NotificationsState } from './notificationsMachine'; export declare const NotificationsContext: React.Context<[ NotificationsState, NotificationsSend ]>; export declare function NotificationsProvider({ children }: { children: React.ReactNode; }): React.JSX.Element; export declare function Notifications(props: any): React.JSX.Element; export declare function Notification({ actor }: { actor: Interpreter; }): React.JSX.Element;