import { ReactNode } from "react"; import { FieldPath, FieldValues, RegisterOptions, UseFormRegisterReturn } from "react-hook-form"; import { type FormFieldLayoutProps } from "./FormFieldLayout.js"; export type FormFieldProps = FieldPath> = FormFieldLayoutProps & { name: TName; rules?: RegisterOptions; children: (props: UseFormRegisterReturn) => ReactNode; }; export declare function FormField = FieldPath>({ label, description, standaloneLabel, layout, tooltip, name, rules, children, }: FormFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FormField.d.ts.map