import { AnimationEraseOptions, AnimationProps, Box } from '../types'; import { AnimationBase } from './base'; export declare class AnimationErase extends AnimationBase { private key; private defs; private mask; private box; constructor(options: AnimationProps<'erase'>); get isXEnd(): boolean; get isYEnd(): boolean; get isClockwise(): boolean; get isHorizontal(): boolean; get isPolar(): boolean; updateMask(data: Box | string): void; init(): void; play(): void; destroy(): void; }