import { ReactNode } from "react"; import { FieldPath, FieldValues, RegisterOptions, UseFormRegisterReturn } from "react-hook-form"; type Props = FieldPath> = { name: TFieldName; rules?: RegisterOptions; children: (props: UseFormRegisterReturn) => ReactNode; }; export declare function FormInput = FieldPath>({ name, rules, children }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FormInput.d.ts.map