import type { json_string } from '@jsonjoy.com/util/lib/json-brand'; /** * @category Decoder */ export declare class MsgPackToJsonConverter { /** @ignore */ protected uint8: Uint8Array; /** @ignore */ protected view: DataView; /** @ignore */ protected x: number; reset(uint8: Uint8Array): void; /** * Converts a MessagePack blob directly to JSON string. * * @param uint8 Binary data with MessagePack encoded value. * @returns JSON string. */ convert(uint8: Uint8Array): json_string; /** @ignore */ protected val(): string; /** @ignore */ protected str(size: number): string; /** @ignore */ protected obj(size: number): json_string; /** @ignore */ protected key(): json_string; /** @ignore */ protected arr(size: number): json_string; /** @ignore */ protected bin(size: number): string; /** @ignore */ protected ext(size: number): string; /** @ignore */ protected u8(): number; /** @ignore */ protected u16(): number; /** @ignore */ protected u32(): number; /** @ignore */ protected i8(): number; /** @ignore */ protected i16(): number; /** @ignore */ protected i32(): number; /** @ignore */ protected f32(): number; /** @ignore */ protected f64(): number; } //# sourceMappingURL=MsgPackToJsonConverter.d.ts.map