import { ABIEncoder } from "../serializer/encoder.js"; import { ABISerializableObject } from "../serializer/serializable.js"; export type BlobType = Blob | string; export declare class Blob implements ABISerializableObject { static abiName: string; static from(value: BlobType): Blob; static fromString(value: string): Blob; readonly array: Uint8Array; constructor(array: Uint8Array); equals(other: BlobType): boolean; get base64String(): string; get utf8String(): string; toABI(encoder: ABIEncoder): void; toString(): string; toJSON(): string; } //# sourceMappingURL=blob.d.ts.map