/// import React from 'react'; import { Component } from 'react'; export interface ScrollNumberProps { prefixCls?: string; className?: string; count?: string | number; component?: string; onAnimated?: Function; style?: React.CSSProperties; } export default class ScrollNumber extends Component { static defaultProps: { prefixCls: string; count: null; onAnimated(): void; }; lastCount: any; constructor(props: any); getPositionByNum(num: any, i: any): any; componentWillReceiveProps(nextProps: any): void; renderNumberList(position: any): React.ReactElement[]; renderCurrentNumber(num: any, i: any): React.DOMElement<{ className: string; style: { transition: string; msTransform: string; WebkitTransform: string; transform: string; }; key: any; }, Element>; renderNumberElement(): any; render(): React.DOMElement; }