import Ac3ChannelLayout from './Ac3ChannelLayout';
import AudioConfiguration from './AudioConfiguration';
import CodecConfigType from './CodecConfigType';
/**
 * @export
 * @class Eac3AudioConfiguration
 */
export declare class Eac3AudioConfiguration extends AudioConfiguration {
    /**
     * Discriminator property for CodecConfiguration
     * @type {string}
     * @memberof Eac3AudioConfiguration
     */
    readonly type: CodecConfigType;
    /**
     * Channel layout of the audio codec configuration
     * @type {Ac3ChannelLayout}
     * @memberof Eac3AudioConfiguration
     */
    channelLayout?: Ac3ChannelLayout;
    /**
     * The highest frequency that will pass the audio encoder. This value is optional.
     * @type {number}
     * @memberof Eac3AudioConfiguration
     */
    cutoffFrequency?: number;
    constructor(obj?: Partial<Eac3AudioConfiguration>);
}
export default Eac3AudioConfiguration;
