import React from 'react'; import { NumberProps } from './types'; import './index.less'; export type { NumberProps }; declare const Number: (props: NumberProps) => React.JSX.Element; export default Number;