import type { DecompressError } from '@mappedin/mvf-core'; import { type Result } from '@mappedin/safe-types/result'; import type { ParsedMVF } from '../types/bundle.js'; import { convertUnzippedStandardMVFv3ToParsedMVFv2 } from './convert.js'; import type { MVFv2_STANDARD_MVFv3 } from './index.js'; export type { MVFv2_STANDARD_MVFv3 }; export { convertUnzippedStandardMVFv3ToParsedMVFv2 }; /** * Lightweight stub parser with the same API as the real STANDARD_MVF_V3_PARSER. * Uses inlined fromBundle handlers and skips TypeBox schema validation. * SafeStringEnum values are normalized: unrecognized strings become 'unknown'. */ export declare const STANDARD_MVF_V3_PARSER: { decompressUnsafeSync(data: Uint8Array): Result; decompressUnsafe(data: Uint8Array): Promise>; decompressSync(data: Uint8Array): Result; decompress(data: Uint8Array): Promise>; }; export declare function extractAndConvertMVFv3UnsafeSync(data: Uint8Array): Result; export declare function extractAndConvertMVFv3Unsafe(data: Uint8Array): Promise>; export declare function extractAndConvertMVFv3Sync(data: Uint8Array): Result; export declare function extractAndConvertMVFv3(data: Uint8Array): Promise>; //# sourceMappingURL=lite.d.ts.map