import "../tailwind.css";
import React from "react";
type OtpInputProps = {
  otp: string[];
  setOtp: React.Dispatch<React.SetStateAction<string[]>>;
  parentClassName?: string;
  inputClassName?: string;
};
declare const OtpInput: ({
  otp,
  setOtp,
  parentClassName,
  inputClassName,
}: OtpInputProps) => React.JSX.Element;
export default OtpInput;
