import { IBlob } from '../../base/interfaces/official'; import { IBlobProperties } from '../../base/official-klasses/Blob'; export declare const getState: (instance: IBlob) => IBlobProperties, setState: (instance: IBlob, properties: Partial) => void; declare const BlobBaseClass: { new (_blobParts?: Iterable | undefined, _options?: import("../../base/interfaces/official").IBlobPropertyBag | undefined): { readonly size: Promise; readonly type: Promise; arrayBuffer(): Promise; slice(start?: number | undefined, end?: number | undefined, contentType?: string | undefined): Promise; text(): Promise; }; }; export default class Blob extends BlobBaseClass implements IBlob { } export {};