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