import { ACustomAnimate } from '@visactor/vrender-core'; import type { IVennCircle, IVennOverlapArc, VennCircleName } from './utils/interface'; export declare class VennOverlapAnimation extends ACustomAnimate<{ path: string; arcs: IVennOverlapArc[]; }> { protected fromCircles: Record; protected toCircles: Record; onBind(): void; onUpdate(end: boolean, ratio: number, out: Record): void; }