import { PureComponent } from 'react';
interface CountdownBgProps {
    percent: any;
    firstStopColor: any;
    secondStopColor: any;
}
export default class CountdownBg extends PureComponent<CountdownBgProps> {
    static defaultProps: {
        percent: number;
        firstStopColor: string;
        secondStopColor: string;
    };
    static setBgColor: (firstStopColor: any, secondStopColor: any) => void;
    render(): JSX.Element;
}
export {};
