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;
