export interface RunOptions { commandName: string; projectDir: string; consoleOutputFormat: 'pretty' | 'json'; shell?: string; root?: string; enableStdin?: boolean; checkStart?: boolean; } export interface StartResult { projectDir: string; serviceName: string; } export declare function startOneService(req: RunOptions): Promise; //# sourceMappingURL=startOneService.d.ts.map