import React from 'react';
import { InputProps } from '@tarojs/components/types/Input';
import './index.scss';
interface AbDigitProps extends InputProps {
    term: string;
}
declare const AbDigit: React.FC<AbDigitProps>;
export default AbDigit;
