/**
 * 目前暂时废弃的组件
 */
import { PureComponent } from 'react';
interface CountdownBgProps {
    id: any;
    percent: any;
    text: any;
}
export default class CountdownBg extends PureComponent<CountdownBgProps> {
    animationTime: any;
    canvasInfo: any;
    componentDidMount(): void;
    circle(cx: any, cy: any, r: any): void;
    sector(cx: any, cy: any, r: any, startAngle: any, endAngle: any, anti?: boolean): void;
    draw(nextPercent?: number): void;
    render(): JSX.Element;
}
export {};
