import { type ToBytesErrorType } from '../encoding/toBytes.js'; import type { ErrorType } from '../errors/utils.js'; import type { Bytes, Hex } from '../types/data.js'; import { type IsHexErrorType } from './isHex.js'; export type IsBytesEqualErrorType = IsHexErrorType | ToBytesErrorType | ErrorType; export declare function isBytesEqual(a_: Bytes | Hex, b_: Bytes | Hex): boolean; //# sourceMappingURL=isBytesEqual.d.ts.map