import * as React from 'react'; import { ConfigConsumerProps } from '../config-provider'; export interface ScrollNumberProps { prefixCls?: string; className?: string; count?: string | number | null; displayComponent?: React.ReactElement; component?: string; onAnimated?: Function; style?: React.CSSProperties; title?: string | number | null; } export interface ScrollNumberState { animateStarted?: boolean; count?: string | number | null; } declare class ScrollNumber extends React.Component { static defaultProps: { count: null; onAnimated(): void; }; static getDerivedStateFromProps(nextProps: ScrollNumberProps, nextState: ScrollNumberState): { animateStarted: boolean; } | null; lastCount?: string | number | null; private timeout?; constructor(props: ScrollNumberProps); componentDidUpdate(_: any, prevState: ScrollNumberState): void; componentWillUnmount(): void; getPositionByNum(num: number, i: number): number; onAnimated: () => void; renderCurrentNumber(prefixCls: string, num: number | string, i: number): JSX.Element; renderNumberElement(prefixCls: string): string | number | JSX.Element[] | null | undefined; renderScrollNumber: ({ getPrefixCls }: ConfigConsumerProps) => React.CElement> | React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; render(): JSX.Element; private clearTimeout; } export default ScrollNumber;