export declare function hexToBytes(hex: string): Uint8Array; export declare function bytesToHex(bytes: Uint8Array): string; export declare function concatBytes(...arrays: Uint8Array[]): Uint8Array; export declare function reverseBytes(bytes: Uint8Array): Uint8Array; export declare function writeUInt8(value: number): Uint8Array; export declare function readUInt8(bytes: Uint8Array, offset?: number): number; export declare function writeUInt16LE(value: number): Uint8Array; export declare function readUInt16LE(bytes: Uint8Array, offset?: number): number; export declare function writeUInt32LE(value: number): Uint8Array; export declare function writeUInt64LE(value: bigint): Uint8Array; export declare function readUInt32LE(bytes: Uint8Array, offset?: number): number; export declare function readUInt64LE(bytes: Uint8Array, offset?: number): bigint; export declare function writeInt64LE(value: bigint): Uint8Array; export declare function writeInt32LE(value: number): Uint8Array; export declare function equalBytes(a: Uint8Array, b: Uint8Array): boolean; //# sourceMappingURL=bytes.d.ts.map