export declare const getDistanceBetweenPoints: (point1: number[] | undefined, point2: number[] | undefined) => number | null;
export declare const compareLocations: (location1: number[] | undefined, location2: number[] | undefined, precision?: number) => boolean;
export interface IGetBearingToCoordinate {
    startCoordinate: number[] | undefined;
    endCoordinate: number[] | undefined;
}
export declare const getBearingToCoordinate: ({ startCoordinate, endCoordinate }: IGetBearingToCoordinate) => number;
