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