/// import { PropsType } from './PropsType'; import './style.less'; export interface NumberProps extends PropsType { prefixCls?: string; prefixcsltype2?: string; } declare function Number(props: NumberProps): JSX.Element; declare namespace Number { var defaultProps: { type: string; inputType: string; prefixCls: string; prefixcsltype2: string; title: string; placeholder: string; defaultValue: string; editable: boolean; titleWidth: number; }; } export default Number;