import * as React from "react"; import { ControllerProps, FieldPath, FieldValues } from "react-hook-form"; type FormFieldContextValue = FieldPath> = { name: TName; }; export declare const FormFieldContext: React.Context>; declare const FormField: = FieldPath>({ ...props }: ControllerProps) => React.JSX.Element; export default FormField;