import React, { ComponentPropsWithoutRef } from 'react'; import { InputOTP as UiInputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator as UiInputOTPSeparator } from '../ui/input-otp'; type UiInputOTPProps = ComponentPropsWithoutRef; export interface InputOTPProps extends Omit { length: number; children: React.ReactNode; } declare const _InputOTP: React.ForwardRefExoticComponent>; declare function InputOTPSeparator(props: ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; export declare const InputOTP: typeof _InputOTP & { Group: typeof InputOTPGroup; Slot: typeof InputOTPSlot; Separator: typeof InputOTPSeparator; regexpOnlyDigits: string; regexpOnlyChars: string; regexpOnlyDigitsAndChars: string; }; export {};