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