import type { Polygon } from "./getCandidates"; import { storageOption } from "./storageOption"; import type { storageOptions } from "../index"; export declare class configureStorage { static storage: storageOption; constructor(options: storageOptions); static init(storageOptions: storageOptions): Promise; static findNodesNearPoint(latitude: number, longitude: number, searchRadius: number): Promise; static findNodesInPolygon(polygon: Polygon): Promise; static close(): Promise; }