import type { FieldElement, FieldPath, FieldPathValue, FieldStore, FieldType, FieldValues, Maybe } from '../types'; /** * Returns the current input of the element. * * @param element The field element. * @param field The store of the field. * @param type The data type to capture. * * @returns The element input. */ export declare function getElementInput>(element: FieldElement, field: FieldStore, type: Maybe>): FieldPathValue;