import type { FieldValues, ResponseData, FieldArrayPath, FormStore, Maybe } from '../types'; /** * Returns a list with the names of all field arrays. * * @param form The form of the field arrays. * @param shouldValid Whether to be valid. * * @returns All field array names of the form. */ export declare function getFieldArrayNames(form: FormStore, shouldValid?: Maybe): FieldArrayPath[];