import { BoolParameter } from "../boolParameter"; import type { IFileReference, IParameter, IVst3Plugin } from "../types"; import { Plugin } from "./plugin"; export declare class Vst3Plugin extends Plugin implements IVst3Plugin { 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; }