import { h3GetResolution, H3Index, h3IsValid } from 'h3-js';
export { h3GetResolution, h3IsValid };
export type Centroid = [number, number];
export declare function getVertices({ id }: {
    id: H3Index;
}): number[][];
export declare function getCentroid({ id }: {
    id: H3Index;
}): Centroid;
export declare function idToPolygonGeo(object?: {
    id: H3Index;
}, properties?: any): {
    type: string;
    geometry: {
        coordinates: number[][] | number[][][];
        type: string;
    };
    properties: any;
} | null;
export declare const isHexField: (field: any, _fieldIdx: any, _dataContainer: any) => boolean;
export declare const getHexFields: (fields: any, dataContainer: any) => any;
