export declare class Content { type: string; body: NodeJS.ReadableStream; meta?: any; constructor(type: string, body: NodeJS.ReadableStream, meta?: any); toBuffer(): Promise; } export declare class DefaultContent extends Content { constructor(body: NodeJS.ReadableStream); }