export interface ListOutput { processes: { command: string; workingDir: string; uptime: string; pid: number; status: string; serviceName: string; configChanged?: boolean; }[]; showAll?: boolean; message?: string; } export declare function handleList(options?: { showAll?: boolean; }): Promise; export declare function formatUptime(milliseconds: number): string; export declare function printListOutput(output: ListOutput): void; //# sourceMappingURL=list-command.d.ts.map