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