export type TraceIdProvider = () => string | null | undefined; export interface RelivioOptions { apiKey: string; baseUrl?: string; timeoutMs?: number; maxRetries?: number; fetchImpl?: typeof fetch; defaultService?: string; traceIdProvider?: TraceIdProvider; } export interface ResolvedOptions { apiKey: string; baseUrl: string; timeoutMs: number; maxRetries: number; fetchImpl: typeof fetch; defaultService: string | undefined; traceIdProvider: TraceIdProvider | undefined; } export declare function resolveOptions(options: RelivioOptions): ResolvedOptions; //# sourceMappingURL=options.d.ts.map