import { Regl } from "regl"; import { CamerasManager } from "../cameras/camerasManager"; import { CatArgsManager } from "../cats/manager/catArgsManager"; import { ClustergrammerProps } from "../index.types"; import { NamespacedStore } from "../state/store/store"; export declare type UIProps = { regl: Regl; store: NamespacedStore; camerasManager: CamerasManager; catArgsManager: CatArgsManager; args: ClustergrammerProps; }; export declare class UI { constructor(props: UIProps); }