import * as cog from '../cog'; import * as canvas from '../canvas'; export declare class CanvasElementOptionsBuilder implements cog.Builder { protected readonly internal: canvas.CanvasElementOptions; constructor(); /** * Builds the object. */ build(): canvas.CanvasElementOptions; name(name: string): this; type(type: string): this; config(config: any): this; constraint(constraint: cog.Builder): this; placement(placement: cog.Builder): this; background(background: cog.Builder): this; border(border: cog.Builder): this; connections(connections: cog.Builder[]): this; }