import type { DeepPartial } from "../../lib/types.js"; import type { FormValue } from "../model.js"; import type { FormState } from "./state.js"; /** * @command */ export declare function setValue(ctx: FormState, value: DeepPartial): void; /** * @query */ export declare function getValueSnapshot(ctx: FormState): FormValue;