import type { McodaAgentSetupClient } from "./types.js"; type FetchLike = (input: string | URL, init?: { method?: string; headers?: Record; body?: string; }) => Promise<{ ok: boolean; status: number; statusText: string; json(): Promise; text(): Promise; }>; export interface CreateMcodaAgentSetupClientInput { baseUrl: string; getAuthHeaders?: (() => Promise> | Record) | Record; fetch?: FetchLike; } export declare function createMcodaAgentSetupClient(input: CreateMcodaAgentSetupClientInput): McodaAgentSetupClient; export {}; //# sourceMappingURL=client.d.ts.map