import { type SizeOverflowErrorType } from '../errors/data.js'; import type { ErrorType } from '../errors/utils.js'; import type { Bytes, Hex } from '../types/data.js'; import { type SizeErrorType } from './size.js'; export type AssertSizeOptions = { size: number; }; export type AssertSizeErrorType = SizeOverflowErrorType | SizeErrorType | ErrorType; export declare function assertSize(hexOrBytes: Hex | Bytes, options: AssertSizeOptions): void; //# sourceMappingURL=assertSize.d.ts.map