import { latLng, type LatLngLike } from "../geo.js"; import type { Layer } from "../layer.js"; import type { Orihon } from "../map.js"; export interface DrawSnapOptions { enabled?: boolean; pixelTolerance?: number; grid?: boolean; } export interface SnapResult { latlng: ReturnType; layer?: Layer; snapped: boolean; } export declare function snapLatLng(map: Orihon, value: LatLngLike, layers: Iterable, options?: DrawSnapOptions): SnapResult; //# sourceMappingURL=snap.d.ts.map