omnipay-savings-sdk
Version:
Omnipay Savings SDK
11 lines (10 loc) • 315 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type OtpInputProps = {
codeLength?: number;
autoFocus?: boolean;
onCodeFilled: (code: string) => void;
containerStyle?: StyleProp<ViewStyle>;
};
declare const OtpInput: React.FC<OtpInputProps>;
export default OtpInput;