import type { ITileSource, MapboxVectorTile } from '../interface'; export default class VectorSource implements ITileSource { private vectorTile; private vectorLayerCache; private x; private y; private z; constructor(vector: MapboxVectorTile, x: number, y: number, z: number); getTileData(sourceLayer: string): import("geojson").Feature[]; getFeatureById(): void; }