import type { Expr } from "../../types";
import { CypherFunction } from "./CypherFunctions";
/**
 * @see {@link https://neo4j.com/docs/cypher-manual/current/functions/spatial/ | Cypher Documentation}
 * @group Functions
 * @category Spatial
 */
export declare function point(variable: Expr): CypherFunction;
export declare namespace point {
    var distance: (lexpr: Expr, rexpr: Expr) => CypherFunction;
    var withinBBox: (point: Expr, lexpr: Expr, rexpr: Expr) => CypherFunction;
}
