import { ReactNode } from "react"; import { FieldPathByValue, FieldValues, UseControllerProps } from "react-hook-form"; import { PatchedControllerRenderProps } from "./types.js"; type Props = FieldPathByValue> = { name: TName; rules?: UseControllerProps["rules"]; children: (props: PatchedControllerRenderProps) => ReactNode; }; export declare function ControlledFormInput = FieldPathByValue>({ name, rules, children }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ControlledFormInput.d.ts.map