import type { MVTDecodeOptions, PackedVectorTile } from "./mvt.js"; import type { VectorTileCoordinates } from "./vector-tile-layer.js"; export declare function mvtTileWasmSupported(): boolean; export declare function mvtTileWasmError(): string; /** Stable production path: one WASM output blob -> one snapshot copy -> typed views. */ export declare function decodePackedMVTTileWasm(data: ArrayBuffer | Uint8Array, tile: Pick, options?: MVTDecodeOptions): PackedVectorTile | null; /** Benchmark-only live views. Valid only until the next tile decode/grow. */ export declare function decodePackedMVTTileWasmUnsafe(data: ArrayBuffer | Uint8Array, tile: Pick, options?: MVTDecodeOptions): PackedVectorTile | null; //# sourceMappingURL=mvt-tile-wasm.d.ts.map