import type { PreparedWorkerRuntimePath } from './worker-runtime-assets.js'; export declare const WORKER_CWD_ENV = "QODER_WORKER_CWD"; export interface WorkerRuntimeLaunchContext { env: Record; workerData: Record; } /** * Build the environment and workerData contract consumed by qoderWorkerRuntime. * Query transports and one-shot commands must use the same contract so cwd and * sidecar assets resolve identically in both launch modes. */ export declare function buildWorkerRuntimeLaunchContext(preparedRuntime: PreparedWorkerRuntimePath, options: { cwd: string; env: Record; workerData?: Record; }): WorkerRuntimeLaunchContext;