import type { AppManifest } from '@ankhorage/contracts'; import React from 'react'; interface ManifestContextValue { manifest: AppManifest; activeScreenId?: string; onScreenChange?: (screenId: string) => void; } export declare const ManifestContext: React.Context; export declare function ManifestProvider(props: ManifestContextValue & { children: React.ReactNode; }): React.JSX.Element; export declare function useManifest(): AppManifest; export declare function useManifestContext(): ManifestContextValue; export declare function useOptionalManifestContext(): ManifestContextValue | null; export {}; //# sourceMappingURL=ManifestContext.d.ts.map