export interface KillProcessOptions { quiet?: boolean; } export interface ServiceInfo { command_name: string; project_dir: string; pid: number | null; killed_at?: number | null; } export declare function killOneRunningProcess(process: ServiceInfo, options: KillProcessOptions): Promise; //# sourceMappingURL=killOneRunningProcess.d.ts.map