import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface BounceProperties extends AnimationProperties { axis?: 'x' | 'y' | 'both'; scale?: number | string; xAnchor?: number | string; yAnchor?: number | string; count?: number | string; frequency?: number | string; phase?: number | string; rampDuration?: number | string; randomness?: number | string; } export declare class Bounce extends AnimationBase { type: string; constructor(properties?: BounceProperties); }