import type { BacklogHttpResponse as BacklogHttpResponseContract } from "../contracts/api/BacklogHttpResponse"; export declare class BacklogHttpResponse implements BacklogHttpResponseContract { private readonly options; readonly ok: boolean; readonly headers: Headers; constructor(options: { readonly response: Response; }); getStatus(): number; getHeader(name: string): string; getWWWAuthenticate(): { scheme: string; params: Map; }; getContentType(): { mediaType: string; params: Map; }; getRateLimitLimit(): number; getRateLimitRemaining(): number; getRateLimitReset(): number; text(): Promise; json(): Promise; blob(): Promise; arrayBuffer(): Promise; }