import * as cog from '../cog'; import * as canvas from '../canvas'; import * as common from '../common'; export declare class LineConfigBuilder implements cog.Builder { protected readonly internal: canvas.LineConfig; constructor(); /** * Builds the object. */ build(): canvas.LineConfig; color(color: cog.Builder): this; width(width: number): this; radius(radius: number): this; }