/** Type of cube */ export declare const CubeType: { readonly Cube: "cube"; readonly View: "view"; }; export type CubeType = (typeof CubeType)[keyof typeof CubeType];