import { Camera } from "./Camera"; import { CameraType } from "../Constants"; declare class OrthographicCamera extends Camera { zoom: number; left: any; right: any; top: any; bottom: any; near: any; far: any; type: CameraType; constructor(left: any, right: any, top: any, bottom: any, near: any, far: any); updateProjectionMatrix(): void; } export { OrthographicCamera };