import { Referenceable } from "./referenceable"; import { IParameter } from "./types"; /** Represents a parameter which can provide a value and be used as an automation target. */ export declare abstract class Parameter extends Referenceable implements IParameter { /** Parameter ID as used by VST2 (index), VST3(ParamID) */ parameterID?: number; constructor(parameterID?: number, name?: string, color?: string, comment?: string); protected getXmlAttributes(): any; fromXmlObject(xmlObject: any): this; }