import * as cog from '../cog'; import * as dashboard from '../dashboard'; export declare class DashboardLinkBuilder implements cog.Builder { protected readonly internal: dashboard.DashboardLink; constructor(title: string); /** * Builds the object. */ build(): dashboard.DashboardLink; title(title: string): this; type(type: dashboard.DashboardLinkType): this; icon(icon: string): this; tooltip(tooltip: string): this; url(url: string): this; tags(tags: string[]): this; asDropdown(asDropdown: boolean): this; placement(placement: dashboard.DashboardLinkPlacement.InControlsMenu): this; targetBlank(targetBlank: boolean): this; includeVars(includeVars: boolean): this; keepTime(keepTime: boolean): this; }