import type { BBox } from './bbox'; /** * Gets a SQL sentence to use to filter a BBox * Checks if a certain column value is inside a BBox * * @param {BBox} bbox The BBox to use as filter * @param {string} latitudeCol The latitude column name * @param {string} longitudeCol The longitude column name * @return {string} The SQL sentence */ export declare function getBBoxSQLSentence(bbox: BBox, latitudeCol: string, longitudeCol: string): string; /** * Creates a PostGIS bounding box expression from a BBox * * @param {BBox} bbox The BBox to convert to a polygon * @return {string} The SQL sentences */ export declare function getBBoxPostGISSentence(bbox: BBox): string;