import type { FieldArrayPath, FieldPath, FieldValues, FormStore, ResponseData } from '../types'; /** * Removes invalid field or field array names of field arrays. * * @param form The form of the field array. * @param names The names to be filtered. */ export declare function removeInvalidNames(form: FormStore, names: (FieldPath | FieldArrayPath)[]): void;