/// export declare class Blob { readonly body: (string | Buffer)[]; private readonly options; private buffer; private _size; constructor(body: (string | Buffer)[], // options: { type: string; name?: string; }); get size(): number; get type(): string; arrayBuffer(): Promise; text(): Promise; } export default Blob;