import type { FieldArrayPath, FieldArrayPathValue, FieldPath, FieldValues, FormStore, Maybe, PartialValues, ResponseData } from '../types'; /** * Value type of the get values options. */ export type GetValuesOptions = Partial<{ shouldActive: boolean; shouldTouched: boolean; shouldDirty: boolean; shouldValid: boolean; }>; /** * Returns the current values of the form fields. * * @param form The form of the fields. * @param options The values options. * * @returns The form field values. */ export declare function getValues(form: FormStore, options?: Maybe): PartialValues; /** * Returns the values of the specified field array. * * @param form The form of the field array. * @param name The name of the field array. * @param options The values options. * * @returns The field array values. */ export declare function getValues>(form: FormStore, name: TFieldArrayName, options?: Maybe): PartialValues>; /** * Returns the current values of the specified fields and field arrays. * * @param form The form of the fields. * @param names The names of the fields and field arrays. * @param options The values options. * * @returns The form field values. */ export declare function getValues(form: FormStore, names: (FieldPath | FieldArrayPath)[], options?: Maybe): PartialValues;