import { IBoundingBox, IBoundingBoxWithCenter } from "../../../domain/IBoudingBox";
export interface IBoundingBoxHelper {
    mapToCenterFormat(boundingBox: IBoundingBox): IBoundingBoxWithCenter;
}
