type NaturalSelection = { [K in keyof T]?: T[K] | ((value: T[K]) => T[K]) | undefined; }; declare const evolve: (partial: NaturalSelection) => (data: T) => T; export default evolve; //# sourceMappingURL=evolve.d.ts.map