import webpack from 'webpack'; import { Logger } from '../../../runner'; export interface ServerEntryPoint { name: string; executablePath: string; showNameInLog: boolean; debug: boolean; } export declare function getDebugEntryName(serverBundleNames: string[], debug?: string): string | undefined; export declare function getServerEntryPoints(stats: webpack.Stats, debug?: string): ServerEntryPoint[]; export declare class ServerProcess { private readonly debugPort; private readonly logger; private server; private readonly name; private readonly executablePath; private readonly debug; private readonly showNameInLog; constructor({ name, debug, executablePath, showNameInLog }: ServerEntryPoint, debugPort: number, logger: Logger); start(): Promise; kill(): Promise; } //# sourceMappingURL=server-process.d.ts.map