import * as cog from '../cog'; import * as dashboard from '../dashboard'; export declare class FetchOptionsBuilder implements cog.Builder { protected readonly internal: dashboard.FetchOptions; constructor(); /** * Builds the object. */ build(): dashboard.FetchOptions; method(method: dashboard.HttpRequestMethod): this; url(url: string): this; body(body: string): this; queryParams(queryParams: string[][]): this; headers(headers: string[][]): this; }