type propsType = { label: string; placeholder?: string; disabled?: boolean; required?: boolean; className?: string; onChange?: any; onInput?: any; onKeyDown?: any; onBlur?: any; value?: any; type?: any; inputType?: "numericinput" | "maskinput" | "passwordinput" | "otpinput" | "emailinput"; mask?: string; textAlign?: "left" | "right" | "center" | undefined; validationType?: "email" | "contactNumber"; onFocus?: any; decimalScale?: any; prefix?: any; suffix?: any; allowNegative?: boolean; loading?: boolean; maxlength?: any; length?: number; otpMark?: string; }; export default function BAinput(props: propsType): import("react/jsx-runtime").JSX.Element; export {};