import { Component } from 'react';
export interface AnimateBallProps {
    animating: boolean;
    numberRange: number[];
    activeNumb: number | string;
}
export default class AnimateBall extends Component<AnimateBallProps> {
    numberRangeArr: number[];
    eachItemRotate: any;
    eachItemHeight: any;
    animateName: any;
    shouldComponentUpdate(nextProps: any, nextState: any): boolean;
    componentDidMount(): void;
    genRandomArr(): void;
    shuffle: (arrInput: any) => any[];
    setKeyCss(ballItem: any): void;
    render(): JSX.Element;
}
