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