/** * mama stop command * * Stop MAMA agent daemon */ export declare function isStandaloneDaemonCommand(command: string): boolean; export declare function isStandaloneWatchdogCommand(command: string): boolean; export declare function findStandaloneDaemonCommandForPid(pid: number): string | undefined; /** * Execute stop command */ export declare function stopCommand(): Promise; /** * Kill processes occupying specified ports (cleanup for zombie MAMA processes) * @returns true if any processes were killed */ export declare function killProcessesOnPorts(ports: number[]): Promise; /** * Kill orphaned `mama daemon` processes that have no PID file tracking them. * @returns true if any processes were killed */ export declare function killAllMamaDaemons(): Promise; export declare function killAllMamaWatchdogs(): Promise; export declare function listProcesses(): Array<{ pid: number; command: string; }>; //# sourceMappingURL=stop.d.ts.map