///
import { FormikProps } from "formik";
interface IProps {
inputName?: string;
formik: FormikProps;
time?: number;
onResetTimer?: () => void;
OTPLength?: number;
otpType?: "any" | "number" | "alpha" | "alphanumeric";
}
declare function BaseOtpInput({ formik, inputName, time, onResetTimer, OTPLength, otpType, ...props }: IProps): JSX.Element;
export default BaseOtpInput;