export declare const readUint8: typeof readUInt8; export declare function readUInt8(buff: Uint8Array, offset: number, noAssert?: boolean): number; export declare const readUint16LE: typeof readUInt16LE; export declare function readUInt16LE(buff: Uint8Array, offset: number, noAssert?: boolean): number; export declare const readUint16BE: typeof readUInt16BE; export declare function readUInt16BE(buff: Uint8Array, offset: number, noAssert?: boolean): number; export declare const readUint32LE: typeof readUInt32LE; export declare function readUInt32LE(buff: Uint8Array, offset: number, noAssert?: boolean): number; export declare const readUint32BE: typeof readUInt32BE; export declare function readUInt32BE(buff: Uint8Array, offset: number, noAssert?: boolean): number; export declare function readBigUInt64LE(buff: Uint8Array, offset: number): bigint; export declare function readBigUInt64BE(buff: Uint8Array, offset: number): bigint; export declare function readIntLE(buff: Uint8Array, offset: number, byteLength: number, noAssert?: boolean): number; export declare function readFloat32BE(buf: Uint8Array, offset: number): number; export declare function readFloat64BE(buf: Uint8Array, offset: number): number;