import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface WipeProperties extends AnimationProperties { xAnchor?: number | string; startAngle?: number | string; endAngle?: number | string; clip?: 'both' | 'first-only' | 'second-only'; fade?: boolean; } export declare class Wipe extends AnimationBase { type: string; constructor(properties?: WipeProperties); }