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