import { Regl } from "regl"; import { NamespacedStore } from "../state/store/store"; import { CameraInstance } from "./cameras"; export declare class CamerasManager { #private; constructor(regl: Regl, store: NamespacedStore); resetCameras(store: NamespacedStore): void; getCameras(): Record; mutateReglProps(newProps: any): void; remakeMatrixArgs(store: NamespacedStore): void; getReglProps(): any; getReglInstance(): Regl; }