//#region src/arg-identity.d.ts /** * 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. */ declare function argIdentity(value: any): any; //#endregion export { argIdentity }; //# sourceMappingURL=arg-identity.d.mts.map