import { Point } from './point'; export interface IBoundary { x: number; y: number; width: number; height: number; } export declare function computeBoundingBox(points: Point[]): IBoundary; export declare function computeBoundingBoxForElements(elements: { bounds: IBoundary; }[]): IBoundary; export declare function computeDimension(scale: number, value: number, isCircle?: boolean): number;