import { type ClientRuntimeTransport } from "../shared/runtime-config.js"; import type { ApiClient } from "./types.js"; export interface ApiRuntimeScope { buildId: string; applicationId: string; } declare global { var __EVJS_APP_TRANSPORTS__: Record | undefined; } export declare function readApplicationTransport(scope: ApiRuntimeScope): ClientRuntimeTransport | undefined; /** The generated module owns this instance, even when runtime packages are shared. */ export declare function createFrameworkApiClient(scope: ApiRuntimeScope, transport?: ClientRuntimeTransport, resolveDefaults?: (scope: ApiRuntimeScope) => ClientRuntimeTransport | undefined): ApiClient; //# sourceMappingURL=framework-runtime.d.ts.map