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