import type { BBox } from './bbox'; /** * Converts a BBox to WKT * * @param {BBox} bbox The BBox to convert to WKT * @return {string} The resulting WKT */ export declare function BBoxToWKT(bbox: BBox): string; /** * Gets the BBox of a WKT * * @param {string} wkt The WKT to get BBox of * @return {BBox} The WKT BBox */ export declare function getWKTBBox(wkt: string): BBox;