import { GridType } from './GridType'; export declare class GridTypeUtils { /** * Get the Grid Type accuracy number of digits in the easting and northing * values * * @return accuracy digits */ static getAccuracy(gridType: GridType): number; /** * Get the Grid Type with the accuracy number of digits in the easting and * northing values. Accuracy must be inclusively between 0 * ({@link GridType#HUNDRED_KILOMETER}) and 5 ({@link GridType#METER}). * * @param accuracy * accuracy digits between 0 (inclusive) and 5 (inclusive) * @return grid type */ static withAccuracy(accuracy: number): GridType; /** * Get the precision of the value in meters based upon trailing 0's * * @param value * value in meters * @return precision grid type */ static getPrecision(value: number): GridType; static values(): GridType[]; static ordinal(type: GridType): number; static hashCode(type: GridType): number; } //# sourceMappingURL=GridTypeUtils.d.ts.map