/** * Direct HTTP client for workspace operations on the worker. * * Bypasses Convex for latency-sensitive interactive operations * (exec, file read/write). Auth: short-lived scoped worker tokens minted by Convex. */ export declare class WorkerHttpError extends Error { readonly status: number; readonly path: string; constructor(status: number, path: string, message: string); } export declare function initWorkerClient(secret: string): void; export declare function callWorker(workerHost: string, path: string, body: Record, timeoutMs?: number): Promise; //# sourceMappingURL=client.d.ts.map