import type { FieldArrayPath, FieldArrayPathValue, FieldPath, FieldPathValue, FieldValues, Maybe, PartialValues } from '../types'; /** * Returns the value of a dot path in an object. * * @param path The dot path. * @param object The object. * * @returns The value or undefined. */ export declare function getPathValue>(path: TFieldName, object: PartialValues): Maybe>; /** * Returns the value of a dot path in an object. * * @param path The dot path. * @param object The object. * * @returns The value or undefined. */ export declare function getPathValue>(path: TFieldArrayName, object: PartialValues): Maybe>;