/** * A video codec parameter can be either a String or a Hash. * @param {Object} param vc_[ : : []] * or { codec: 'h264', profile: 'basic', level: '3.1' } * @return {String} : : []] if a Hash was provided * or the param if a String was provided. * Returns null if param is not a Hash or String */ export declare function processVideoParams(param: any): any;