/** * Provides util functions to shortcut `expect()` statements. */ import { Coord, GeometryTransformService } from '@bespunky/angular-google-maps/core'; /** * Shortcuts expecting a literal position match with a native LatLng object. * Uses `toBeCloseTo()` with 6 digits precision. * * @param position1 The first coordinate to compare. * @param position2 The second coordinate to compare. */ export declare function expectPositionEquals(position1: Coord, position2: Coord, geometry?: GeometryTransformService): void;