export declare function encodeUtf8(value: string): Uint8Array; export declare function decodeUtf8(bytes: Uint8Array, fatal?: boolean): string; export declare function decodeNullTerminatedUtf8(bytes: Uint8Array, fatal?: boolean): string; export declare function readUint16LE(buf: Uint8Array, offset: number): number; export declare function readUint32LE(buf: Uint8Array, offset: number): number; export declare function readUint64LE(buf: Uint8Array, offset: number): bigint; export declare function writeUint16LE(buf: Uint8Array, offset: number, value: number): void; export declare function writeUint32LE(buf: Uint8Array, offset: number, value: number): void; export declare function writeUint64LE(buf: Uint8Array, offset: number, value: bigint): void; export declare function concatBytes(chunks: Uint8Array[]): Uint8Array; export declare function toUint32OrThrow(value: bigint, label: string): number; //# sourceMappingURL=binary.d.ts.map