import { type Control } from "react-hook-form"; import type { ParsedInputNode } from "@aeolun/trpc-router-parser"; export declare function TextField({ name, label, control, node: inputNode, }: { name: string; label: string; control: Control; node: ParsedInputNode; }): import("react/jsx-runtime").JSX.Element;