import * as cog from '../cog'; import * as dashboard from '../dashboard'; export declare class ActionBuilder implements cog.Builder { protected readonly internal: dashboard.Action; constructor(); /** * Builds the object. */ build(): dashboard.Action; type(type: dashboard.ActionType): this; title(title: string): this; fetch(fetch: cog.Builder): this; infinity(infinity: cog.Builder): this; confirmation(confirmation: string): this; oneClick(oneClick: boolean): this; variables(variables: cog.Builder[]): this; style(style: { backgroundColor?: string; }): this; }