import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface CircularWipeProperties extends AnimationProperties { ringColor?: string; ringWidth?: number | string; scope?: 'composition' | 'elements'; xAnchor?: number | string; yAnchor?: number | string; clip?: 'both' | 'first-only' | 'second-only'; fade?: boolean; } export declare class CircularWipe extends AnimationBase { type: string; constructor(properties?: CircularWipeProperties); }