import type { FieldArrayPath, FieldArrayPathValue, FieldValues, FormStore, ResponseData } from '../types'; /** * Value type of the value options. */ type ValueOptions> = { at: number; value: FieldArrayPathValue[number]; }; /** * Sets the specified field array value to the corresponding field and field * array stores. * * @param form The form of the field array. * @param name The name of the field array. * @param options The value options. */ export declare function setFieldArrayValue>(form: FormStore, name: TFieldArrayName, { at: index, value }: ValueOptions): void; export {};