import type { NevoProps, ValueMutatorNamed } from "../types"; /** * Returns a simple mutator that takes only the new `value` as argument. * * @param props Properties `name` and `onChange` according to the NEVO pattern. * @returns Simple mutator that takes only the new `value` as argument. */ export declare function useMutator(props: Pick, "name" | "value" | "onChange">): ValueMutatorNamed | undefined;