export declare const arraysEqual: (a: Uint8Array, b: Uint8Array) => boolean; /** * Non-copying conversion of Uint8Array to Buffer. * The resulting buffer will share the same allocated memory as the Uint8Array. */ export declare const arrayToBuffer: (array: Uint8Array) => Buffer; /** * Non-copying conversion of Buffer to Uint8Array. * The resulting Uint8Array will share the same allocated memory as the Buffer. */ export declare const bufferToArray: (buffer: Buffer) => Uint8Array; export declare const stringToArray: (string: string) => Uint8Array; export declare const arrayToString: (array: Uint8Array) => string; //# sourceMappingURL=uint8array.d.ts.map