/** * Check if the given value is an Uint8Array. * @param {*} value - The value to check. * @returns {boolean} Returns `true` if the given value is an Uint8Array, else `false`. * @example * * isUint8Array(new Uint8Array(8)); //=> true * isUint8Array([]); //=> false */ export declare const isUint8Array: (value: unknown) => value is Uint8Array; export default isUint8Array;