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