import { Circle } from 'echarts/types/src/util/graphic';
import { CircleProps, ZRenderType } from 'zrender';
export declare class BreathCircle {
    shadow: Circle;
    circle: Circle;
    chart: any;
    options: any;
    isBreath: boolean;
    breathTimer: any;
    zr: ZRenderType;
    constructor(zr: any, chart: any, options: any);
    init(zr: any, chart: any, options: any): void;
    draw(options: any): void;
    cubicOut(k: any): number;
    breath(isBreath: any): void;
    move(position: any): void;
    attr(property: CircleProps): void;
    remove(): void;
}
