/// import { IHttpFile } from './contracts.js'; export declare class TestHttpFile implements IHttpFile { protected attrs: any; constructor(attrs?: any); get originalName(): any; get type(): any; get size(): any; get path(): any; get extension(): any; readStream(): import("fs").ReadStream; static source(fpath: string): Promise; }