import React from 'react'; type AppContextProps = { appId: string; }; type IAppState = { appId: string; }; type IAppContext = { patchState: (change: Partial) => void; setAppId: (appId: string) => void; state: IAppState; }; export declare const AppContext: React.Context; export declare const AppContextProvider: (props: WithChildren) => JSX.Element; type WithChildren = T & { children?: JSX.Element | JSX.Element[]; }; export {};