export declare class Base { static bufferIndexOf(array: Uint8Array[], element: Uint8Array, isSorted?: boolean): number; static binarySearch(array: Uint8Array[], element: Uint8Array, compareFunction: (a: Uint8Array, b: Uint8Array) => number): number; static compare(a: Uint8Array, b: Uint8Array): number; static linearSearch(array: Uint8Array[], element: Uint8Array, eqChecker: (a: Uint8Array, b: Uint8Array) => boolean): number; static bufferify(value: Uint8Array | string): Uint8Array; static isHexString(v: string): boolean; static bufferToHex(value: Uint8Array, withPrefix?: boolean): string; static bufferifyFn(f: any): any; }