///
import { Server } from 'http';
export declare class TestServer {
_port: number;
path: string;
httpServer?: Server;
timeout: number;
constructor(port: number, pathParts: string[]);
start(): Promise;
get port(): number;
url(path?: string): string;
get address(): string;
stop(): Promise;
}
export declare function start(...pathParts: string[]): Promise;