import { BoolParameter } from "../boolParameter"; import type { IFileReference, IParameter, IVst2Plugin } from "../types"; import { Plugin } from "./plugin"; export declare class Vst2Plugin extends Plugin implements IVst2Plugin { constructor(deviceName?: string, pluginVersion?: string, enabled?: BoolParameter, loaded?: boolean, deviceID?: string, deviceVendor?: string, state?: IFileReference, parameters?: IParameter[], name?: string, color?: string, comment?: string); toXmlObject(): any; }