import AudioConfiguration from './AudioConfiguration'; import ChannelLayout from './ChannelLayout'; import CodecConfigType from './CodecConfigType'; /** * @export * @class Mp2AudioConfiguration */ export declare class Mp2AudioConfiguration extends AudioConfiguration { /** * Discriminator property for CodecConfiguration * @type {string} * @memberof Mp2AudioConfiguration */ readonly type: CodecConfigType; /** * Channel layout of the audio codec configuration * @type {ChannelLayout} * @memberof Mp2AudioConfiguration */ channelLayout?: ChannelLayout; constructor(obj?: Partial); } export default Mp2AudioConfiguration;