export type DefaultRuntimeTransport = 'process' | 'worker'; /** * The default transport baked into the packaged SDK bundle. * * Development / plain `tsc` builds default to `process`. Release bundles replace * `__QODER_DEFAULT_RUNTIME_TRANSPORT__` through esbuild `define`. */ export declare const DEFAULT_RUNTIME_TRANSPORT: DefaultRuntimeTransport;