import { Parameter } from "./parameter"; import { IBoolParameter } from "./types"; /** Represents a parameter which can provide a boolean (true/false) value and be used as an automation target. */ export declare class BoolParameter extends Parameter implements IBoolParameter { /** Boolean value for this parameter. */ value?: boolean; constructor(value?: boolean, parameterID?: number, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }