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