import { type RequestServiceOptions, type ServiceConfig } from './types'; /** * Extracts tracing headers (x-trace-id, atl-request-id) from a Response object. * Returns only headers that are present in the response. */ export declare const extractTracingHeaders: (response: Response) => Record; /** * @returns Promise containing the json response */ export declare const requestService: (serviceConfig: ServiceConfig, options?: RequestServiceOptions) => Promise;