import React from 'react'; import { OTPInputProps as ReactOtpInputProps } from 'react-otp-input'; import './OtpInput.scss'; type OtpInputHTMLProps = Pick, 'aria-describedby' | 'aria-label' | 'autoComplete' | 'id' | 'name' | 'required'>; export type OtpInputProps = Omit & OtpInputHTMLProps & { className?: string; disabled?: boolean; error?: boolean | string; focus?: boolean; inputClassName?: string; label?: string; }; export declare const OtpInput: React.FC; export {};