import EventEmitter from "events"; export declare const callSealgenBin: () => string; export declare class RealAppTest { node_pid: number; app_port: number; mongo_port: number; app_path: string; container_name: string; emitter: EventEmitter<[never]>; static init(): Promise; start(): Promise; close(): Promise; runSealgenCommand(command: string): Promise; build(): Promise; throwIfItKillsTheApp(cb: () => Promise): Promise; httpGET(path: string): Promise<{ status: number; response: string; }>; httpPOST(path: string, body: Record): Promise<{ status: number; response: string; }>; addFile(target_path: string, content: string): Promise; fullURL(path: string): string; }