import { AxisCubeDescriptor } from "./AxisCubeDescriptor";
/**
 * A scene descriptor object which contains information (properties, data-values) for the 3D Scene in this current render pass
 */
export declare class SceneDescriptor {
    /**
     * Gets or sets the {@link AxisCubeDescriptor}, which defines the X,Y,Z axis walls, plane, labels and size & position
     * in a 3D Scene
     */
    axisCubeDescriptor: AxisCubeDescriptor;
}
