import SourceChannel from './SourceChannel';
/**
 * @export
 * @class AudioMixChannel
 */
export declare class AudioMixChannel {
    /**
     * Channel number of this mix (starting with 0) (required)
     * @type {number}
     * @memberof AudioMixChannel
     */
    channelNumber?: number;
    /**
     * List of source channels to be mixed (required)
     * @type {SourceChannel[]}
     * @memberof AudioMixChannel
     */
    sourceChannels?: SourceChannel[];
    constructor(obj?: Partial<AudioMixChannel>);
}
export default AudioMixChannel;
