export type Supplier = T | Promise | (() => T | Promise); export interface CartesiaClientOptions { environment?: string | null | undefined; /** Specify a custom URL to connect the client to. */ baseUrl?: string | null | undefined; apiKey?: Supplier | null | undefined; fetcher?: any; } export interface BackCompatRequestOptions { timeoutInSeconds?: number; maxRetries?: number; abortSignal?: AbortSignal; headers?: Record; } //# sourceMappingURL=types.d.ts.map