import { type MVTWriterOptions } from "./lib/encode-mvt.js";
/**
 * Writer for the Mapbox Vector Tile format
 *
 * Experimental: The API may change in minor/patch releases.
 */
export declare const MVTWriter: {
    readonly version: any;
    readonly binary: true;
    readonly options: {
        readonly mvt: {
            readonly layerName: "geojsonLayer";
            readonly version: 1;
            readonly extent: 4096;
        };
    };
    readonly encode: (data: any, options?: MVTWriterOptions) => Promise<ArrayBuffer>;
    readonly encodeSync: (data: any, options?: MVTWriterOptions) => ArrayBuffer;
    readonly name: "Mapbox Vector Tile";
    readonly id: "mvt";
    readonly module: "mvt";
    readonly extensions: ["mvt", "pbf"];
    readonly mimeTypes: ["application/vnd.mapbox-vector-tile", "application/x-protobuf"];
    readonly category: "geometry";
};
//# sourceMappingURL=mvt-writer.d.ts.map