import type { DrawingEntity } from "../../../domain/entities/DrawingEntity";
export declare function getRenderedStructuresBbox(drawingEntities?: DrawingEntity[]): {
    left: any;
    right: any;
    top: any;
    bottom: any;
    width: number;
    height: number;
};
