/** * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { Camera } from '../../../mol-canvas3d/camera.js'; import { PluginStateAnimation } from '../model.js'; type State = { snapshot: Camera.Snapshot; }; export declare const AnimateCameraSpin: PluginStateAnimation<{ durationInMs: number; speed: number; direction: "cw" | "ccw"; }, State | undefined>; export {};