import MuxingType from './MuxingType';
/**
 * @export
 * @class MuxingTypeResponse
 */
export declare class MuxingTypeResponse {
    /**
     * The type of the Muxing
     * @type {MuxingType}
     * @memberof MuxingTypeResponse
     */
    type?: MuxingType;
    constructor(obj?: Partial<MuxingTypeResponse>);
}
export default MuxingTypeResponse;
