/** * [返回数组或对象的首个值] * @param {Array / Object} value 源集合 */ declare const first: (value: any[] | Object) => T; export default first;