export * as types from './types'; export { validateItem } from './validateItem'; export { validate } from './validate'; export { clean } from './clean'; import * as isValidGeoJSON from './isValidGeoJSON'; import * as isValidGeometry from './isValidGeometry'; export declare const utils: { isValidGeometry: typeof isValidGeometry; isValidGeoJSON: typeof isValidGeoJSON; isValidCoordinate: ([lonVal, latVal]: import("./typings").Coordinate) => string | true; lat: (lat: number) => string | true; lon: (lon: number) => string | true; };