import { FlyToOptions } from '../createScene'; import ViewMatrix from '../ViewMatrix'; /** * Helper to perform smooth camera animations from one point to another */ export default function flyTo(options: FlyToOptions & { view: ViewMatrix; cameraController?: any; renderFrame: (immediate?: boolean) => void; cancelFrameToken: () => void; requestFrameToken: (callback: () => void) => number; }): void; //# sourceMappingURL=flyTo.d.ts.map