import React from "react"; import { StyleProp, TextStyle } from "react-native"; interface OTPInputProps { length: number; setVerifyOtp: (otp: number[]) => void; inputStyle?: StyleProp; inActiveInputStyle?: StyleProp; gap?: number; } declare const _default: React.MemoExoticComponent<({ length, setVerifyOtp, inputStyle, inActiveInputStyle, gap, }: OTPInputProps) => React.JSX.Element>; export default _default;