export declare class StubBlob { readonly size: number; readonly type: string; constructor(blobParts?: BlobPart[], options?: BlobPropertyBag); arrayBuffer(): Promise; bytes(): Promise>; slice(start?: number, end?: number, contentType?: string): this; stream(): ReadableStream>; text(): Promise; } export declare class StubFile extends StubBlob { readonly lastModified: number; readonly name: string; readonly webkitRelativePath: string; constructor(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag); } export declare const STUB_STORAGE: (map: Map) => Storage; export declare const STUB_TEXT_DECODER: TextDecoder; export declare const STUB_TEXT_ENCODER: TextEncoder;