import type { FieldArrayPath, FieldArrayPathValue, FieldValues, FormStore, Maybe, PartialValues, ResponseData } from '../types'; /** * Value type of the set values options. */ export type SetValuesOptions = Partial<{ shouldTouched: boolean; shouldDirty: boolean; shouldValidate: boolean; shouldFocus: boolean; }>; /** * Sets multiple values of the form at once. * * @param form The form store. * @param values The values to be set. * @param options The values options. */ export declare function setValues(form: FormStore, values: PartialValues, options?: Maybe): void; /** * Sets multiple values of a field array at once. * * @param form The form of the field array. * @param name The name of the field array. * @param values The values to be set. * @param options The values options. */ export declare function setValues>(form: FormStore, name: TFieldArrayName, values: FieldArrayPathValue, options?: Maybe): void;