import { RealParameter } from "./realParameter"; import { Referenceable } from "./referenceable"; import { SendType } from "./sendType"; import { ISend } from "./types"; /** A single send of a mixer channel. */ export declare class Send extends Referenceable implements ISend { /** Send level. */ volume?: RealParameter; /** Send pan/balance. */ pan?: RealParameter; /** Send type. */ type?: SendType; /** Send destination. */ destination?: Referenceable; constructor(volume?: RealParameter, pan?: RealParameter, type?: SendType, destination?: Referenceable, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }