import React from 'react'; import type { AppEngine, MythikInstance, SpecStore } from 'mythik'; import type { ReactNativeRevealConfig } from './reveal/types.js'; interface AppContextValue { appEngine: AppEngine; svc: MythikInstance; specStore: SpecStore; fetcher?: (url: string, options?: RequestInit) => Promise; urlResolver?: (url: string) => string; reveal?: ReactNativeRevealConfig; } export declare const AppContext: React.Context; export declare function useAppContext(): AppContextValue; export {}; //# sourceMappingURL=app-context.d.ts.map