/** @packageDocumentation * @module Common */ import type { IModelConnection } from "@itwin/core-frontend"; import * as React from "react"; /** * Provides `IModelConnection` to the components wrapped by the provider. * @public */ export declare function IModelConnectionProvider({ iModelConnection, children, }: React.PropsWithChildren<{ iModelConnection?: IModelConnection; }>): React.JSX.Element; /** * @internal */ export declare function useIModelConnection(): IModelConnection | undefined; //# sourceMappingURL=IModelConnectionContext.d.ts.map