/** * This method returns the first argument provided to it. * * @remarks * For more info, please see {@link https://lodash.com/docs/4.17.15#identity | the original Lodash documentation}. * * @param value - The value to return. * @returns The value provided. */ export declare function argIdentity(value: any): any;