import { default as React } from 'react'; import { GlobalErrorHandler, GlobalEventHandler } from '../../core'; import { GlobalStore } from '../../core/stores'; export interface GlobalStoreContextTypes { children: React.ReactNode; onError: GlobalErrorHandler; onEvent: GlobalEventHandler; onLoad?: (widgetName: string) => void; onPageView: (pageViewEvent: string) => void; globalStore: GlobalStore; } export declare const GlobalDataContext: React.Context; export declare const GlobalDataProvider: React.FC>;