import { ReactElement } from "react"; import { ControllerRenderProps, FieldPath, FieldValues, UseControllerProps } from "react-hook-form"; type FormFieldProps = FieldPath> = UseControllerProps & { label?: string; description?: string; className?: string; children: ReactElement<{ field: ControllerRenderProps; }>; }; export declare const FormField: (props: FormFieldProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=field.d.ts.map