import type { WorldCoordinates } from './coordinates';
interface Camera {
    readonly worldCenter: WorldCoordinates;
    readonly zoom: number;
    readonly azimuth: number;
    readonly tilt: number;
}
export { Camera };
