import React from 'react'; export interface NotificationContext { id: string; content: string | React.ReactNode; type: 'default' | string; autoCloseAfter: number; } export interface NotificationSchema { states: { summoned: {}; entering: {}; idle: { states: { expiring: {}; persisting: {}; }; }; exiting: {}; }; } export type NotificationEvent = { type: 'REMOVE'; } | { type: 'EXITED'; }; declare const notificationMachine: import("xstate").StateMachine; export { notificationMachine };