import type { Client } from "./client.js"; import type { NativeProviderFlowRegistry } from "./native-provider-flow-registry.js"; import type { NativeViewProjection } from "./native-view-host-projection.js"; export type NativeFlowContainerContextValue = Readonly<{ client: Client; contentOwner: object | null; flowRegistry: NativeProviderFlowRegistry; projection: NativeViewProjection | null; registerContent: (owner: object) => () => void; }>; export declare const NativeFlowContainerContext: import("react").Context () => void; }> | null>;