export declare enum LabelTypes { ANY = "Any", SKIP = "Skip" } export declare type FeatureID = string; export declare type SchemaID = string; export declare type Coordinate = [number, number]; export declare type Json = any; export declare type GeometryType = 'MultiLineString' | 'MultiPolygon' | 'Point'; export declare type GeometryShape = Coordinate | Coordinate[][] | Coordinate[][][];