import { getResolution, H3IndexInput, isValidCell } from 'h3-js'; export { getResolution, isValidCell }; export type Centroid = [number, number]; export declare function getVertices({ id }: { id: H3IndexInput; }): import("h3-js").CoordPair[]; export declare function getCentroid({ id }: { id: H3IndexInput; }): Centroid; export declare function idToPolygonGeo(object?: { id: H3IndexInput; }, properties?: any): { geometry: { coordinates: import("h3-js").CoordPair[]; type: string; }; properties: any; }; export declare const isHexField: (field: any, fieldIdx: any, dataContainer: any) => boolean; export declare const getHexFields: (fields: any, dataContainer: any) => any;