import { Coordinate } from './coordinate';
export interface BoundingBox {
    min: Coordinate;
    max: Coordinate;
}
