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