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