import { type IFormat } from '../IFormat.js';
import { type IFormatExport } from '../IFormatExport.js';
export declare class HttpStreamFormat implements IFormat {
    content: string | Uint8Array | null;
    close: boolean;
    constructor(content?: string | Uint8Array | null, close?: boolean);
    name(): string;
    export(): IFormatExport;
}
//# sourceMappingURL=HttpStreamFormat.d.ts.map