import type { FieldArrayPath, FieldValues, FormStore, RawFieldArrayState, ResponseData } from '../types'; /** * Sets the store of a field array to the specified state. * * @param form The form of the field array. * @param name The name of the field array. * @param state The new state to be set. */ export declare function setFieldArrayState>(form: FormStore, name: TFieldArrayName, state: RawFieldArrayState): void;