/** * Identity function that returns the input value unchanged. * * Alias of MAP_IDENTITY, so `isMapIdentityFunction()` will return true for this function. */ export declare const passThrough: (input: T) => T;