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