export interface Pm2AppSummary { name: string; script?: string; status?: string; version?: string; } export interface RuntimeSourceInput { pm2Apps: Pm2AppSummary[]; normalizePath?: (path: string) => string; } export interface RuntimeSource { running: boolean; sourcePath: string | null; sourceVersion: string | null; } export declare function classifyRuntimeSource(input: RuntimeSourceInput): RuntimeSource; export declare function countActiveBotmuxDaemonApps(pm2Apps: Pm2AppSummary[]): number; export declare function parsePm2Apps(stdout: string): Pm2AppSummary[]; //# sourceMappingURL=runtime-source.d.ts.map