import { OTPInput } from 'input-otp'; import * as React from "react"; declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps & { containerClassName?: string; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & { index: number; }): import("react/jsx-runtime").JSX.Element; declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot };