export interface ISimplifyLatLongPoint { longitude: number; latitude: number; } export declare function SimplifyLL(points: ISimplifyLatLongPoint[], tolerance?: number, highestQuality?: boolean): ISimplifyLatLongPoint[];