/// <reference types="node" />
export declare class Blob {
    private content;
    readonly type: string;
    readonly encoding?: string;
    readonly size: number;
    constructor(content: Buffer, options: {
        type?: string;
        encoding?: string;
        size?: number;
    });
    slice(start?: number, end?: number, contentType?: string): Blob;
}
//# sourceMappingURL=Blob.d.ts.map