import { PiClient } from "../types.js"; import { PiThreadSupervisor, PiThreadSupervisorOptions } from "./ThreadSupervisor.js"; //#region src/node/client.d.ts export type PiNodeClientOptions = PiThreadSupervisorOptions; /** The process-singleton supervisor, created on first use and pinned to * `globalThis`. Returns the existing instance on subsequent calls (its options * are fixed by the first caller; per-call `workspacePath` overrides the default). */ export declare const getPiThreadSupervisor: (options?: PiNodeClientOptions) => PiThreadSupervisor; export declare const createPiNodeClient: (options?: PiNodeClientOptions) => PiClient; //#endregion //# sourceMappingURL=client.d.ts.map