import type { ComponentPropsWithoutRef, ReactNode } from "react"; import { type As, type InputProps, type MergeWithAs } from "@heroui/react"; import type { Field } from "soda-tanstack-form"; export type FormInputProps = MergeWithAs, ComponentPropsWithoutRef, InputProps, AsComponent> & { field: Field; component?: (props: MergeWithAs, ComponentPropsWithoutRef, InputProps, AsComponent>) => ReactNode; }; export declare function FormInput({ field, component: Input2, ...rest }: FormInputProps): ReactNode;