/// import { Coord, CoordPath } from '@bespunky/angular-google-maps/core'; /** * Produces a coord using the specified function and compares it to the expected coord. * * @export * @param {() => Coord} makeCoord A function which produces a coord. * @param {Coord} expected The coord expected to be produced by the `makeCoord()` function. */ export declare function expectCoord(makeCoord: () => Coord, expected: Coord): void; /** * Produces a path using the specified function and compares it to the expected path. * * @export * @param {() => CoordPath} makePath A function which produces a path. * @param {CoordPath} expected The path expected to be produced by the `makePath()` function. */ export declare function expectPath(makePath: () => CoordPath, expected: CoordPath): void; /** * Produces a bounds object using the specified funcion and compares it to the specified corner coords. * * @export * @param {() => google.maps.LatLngBounds} makeBounds A function which produces a native bounds object. * @param {Coord} northEast The expected north-east corner of the produced bounds. * @param {Coord} southWest The expected south-west corner of the produced bounds. */ export declare function expectBounds(makeBounds: () => google.maps.LatLngBounds, northEast: Coord, southWest: Coord): void;