import Muxing from './Muxing';
import MuxingType from './MuxingType';
/**
 * @export
 * @class Mp3Muxing
 */
export declare class Mp3Muxing extends Muxing {
    /**
     * Discriminator property for Muxing
     * @type {string}
     * @memberof Mp3Muxing
     */
    readonly type: MuxingType;
    /**
     * Name of the output file (required)
     * @type {string}
     * @memberof Mp3Muxing
     */
    filename?: string;
    constructor(obj?: Partial<Mp3Muxing>);
}
export default Mp3Muxing;
