import type { ResolvedSdkConfig } from '../../config/resolved.js'; import type { OrchestratorAuthPort } from './auth.js'; import { type FetchPort } from './fetch.js'; import type { OrchestratorPort } from './port.js'; export interface OrchestratorClientOptions { readonly url: string; readonly auth: OrchestratorAuthPort; readonly headers?: Readonly>; readonly fetch?: FetchPort; } export declare function createOrchestratorClient(options: OrchestratorClientOptions): OrchestratorPort; export declare function createConfiguredOrchestratorClient(config: ResolvedSdkConfig, fetch?: FetchPort): OrchestratorPort; //# sourceMappingURL=client.d.ts.map