import type { ITileParserCFG } from '@antv/l7-core'; import type { VectorTileLayer } from '@mapbox/vector-tile'; import type { Feature } from '@turf/helpers'; import type { IParserData } from '../interface'; export type MapboxVectorTile = { layers: { [_: string]: VectorTileLayer & { features: Feature[]; }; }; }; export default function mapboxVectorTile(data: string | string[], cfg?: ITileParserCFG): IParserData;