import React, { CSSProperties, ReactElement } from 'react';
export interface ScrollNumberProps {
    prefixCls?: string;
    className?: string;
    count?: string | number | null;
    children?: ReactElement<HTMLElement>;
    component?: string;
    style?: CSSProperties;
    title?: string | number | null;
    hidden: boolean;
}
export interface ScrollNumberState {
    animateStarted?: boolean;
    count?: string | number | null;
}
declare const _default: React.NamedExoticComponent<ScrollNumberProps>;
export default _default;
