import { BinaryAttribute } from '@deck.gl/core'; import { BinaryFeatureCollection, BinaryLineFeature, BinaryPointFeature, BinaryPolygonFeature, Feature } from '@loaders.gl/schema'; export type BinaryFeatureTypes = BinaryPointFeature | BinaryLineFeature | BinaryPolygonFeature; export type ExtendedBinaryFeatureCollection = { [P in keyof Omit]: BinaryFeatureCollection[P] & { attributes?: Record; }; }; type FeaureOnlyProperties = Pick; /** * Return the feature for an accesor */ export declare function binaryToFeatureForAccesor(data: BinaryFeatureTypes, index: number): FeaureOnlyProperties | null; export declare function calculatePickingColors(geojsonBinary: Required, encodePickingColor: (id: number, result: number[]) => void): Record; export {}; //# sourceMappingURL=geojson-binary.d.ts.map