import type { ErrorType } from '../errors/utils.js'; import type { Bytes, Hex } from '../types/data.js'; import { type IsHexErrorType } from './isHex.js'; export type SizeErrorType = IsHexErrorType | ErrorType; export declare function size(value: Hex | Bytes): number; //# sourceMappingURL=size.d.ts.map