import type { FieldArrayPath, FieldArrayPathValue, FieldValues, FormStore, ResponseData } from '../types'; /** * Value type of the replace options. */ export type ReplaceOptions> = { at: number; value: FieldArrayPathValue[number]; }; /** * Replaces a item of the field array. * * @param form The form of the field array. * @param name The name of the field array. * @param options The replace options. */ export declare function replace>(form: FormStore, name: TFieldArrayName, options: ReplaceOptions): void;