import type { ParsedMVF } from '../types/bundle.js'; import { type ConvertOptions } from './builderOptions.js'; import type { MVFv2_STANDARD_MVFv3 } from './index.js'; /** * Converts an unzipped MVFv3 object that has the extensions needed for the MVFv2 converter * into a MVFv2 object. * * If the MVFv3 is still zipped, use {@link extractAndConvertMVFv3} instead. * * @param v3 - The unzipped MVFv3 object to convert. * @param options - Optional conversion options, e.g. the polygon * {@link ConvertOptions.centerStrategy | center strategy}. * @returns The converted MVFv2 object. */ export declare function convertUnzippedStandardMVFv3ToParsedMVFv2(v3: MVFv2_STANDARD_MVFv3, options?: ConvertOptions): ParsedMVF; //# sourceMappingURL=convert.d.ts.map