import type { HttpTransport } from "../http"; import type { RequestOptions, RequestTimelineResponse } from "../types"; export declare class RequestsClient { private readonly http; constructor(http: HttpTransport); timeline(requestId: string, options?: RequestOptions): Promise; }