import type { FormValues } from "../../types/state/values"; /** * Returns a value from `FormValues` by name and key path, falling back to `defaultValue`. */ export declare function get(form: FormValues, name: string, keys: PropertyKey[], defaultValue: unknown): unknown; /** * Returns a new `FormValues` object with the value at the given name and keys set to `data`. */ export declare function set(form: FormValues, name: string, keys: PropertyKey[], data: unknown): FormValues; //# sourceMappingURL=form.d.ts.map