import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface ShakeProperties extends AnimationProperties { direction?: number | string; distance?: number | string; count?: number | string; frequency?: number | string; phase?: number | string; rampDuration?: number | string; randomness?: number | string; } export declare class Shake extends AnimationBase { type: string; constructor(properties?: ShakeProperties); }