export default identity; /** * This method returns the first argument it receives. * * @param {*} value Any value. * @returns {*} Returns `value`. */ declare function identity(arg: any): any;