import { BBox } from '../types';
export declare function createBBox(x: number, y: number, width: number, height: number): BBox;
export declare function intersectBBox(box1: Partial<BBox>, box2: Partial<BBox>): BBox;
