import React from 'react'; import { AppConfig } from '../../types'; interface IProps { children: React.ReactNode; appConfig?: AppConfig; } export declare const ConfigContext: React.Context<{ onError: (e: Error) => void; }>; export declare const ConfigProvider: ({ children, appConfig }: IProps) => JSX.Element; export {};