import { Vector3 } from 'three'; export interface CoordinatesShakeProps { startCoordinates: Vector3; shakesPerSecond: number; amplitude: number; } export declare class CoordinatesShake { startCoordinates: Vector3; currentCoordinates: Vector3; amplitude: number; maxShakeDelay: number; currentShakeDelay: number; constructor(props: CoordinatesShakeProps); getCurrentCoordinates(): Vector3; updateShakesPerSecond(shakesPerSecond: number): void; getMaxShakeDelay(shakesPerSecond: number): number; update(delta: number): void; }