import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface WiggleProperties extends AnimationProperties { xRotation?: number | string; yRotation?: number | string; zRotation?: 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 Wiggle extends AnimationBase { type: string; constructor(properties?: WiggleProperties); }