import { type ServiceName } from './paths.js'; export interface ServiceStatusSnapshot { name: ServiceName; label: string; installed: boolean; plistPath: string; pid?: number; lastExitStatus?: number; logFile: string; } export declare function parseLaunchctlListRow(table: string, label: string): { pid?: number; lastExitStatus?: number; } | undefined; export declare function serviceStatus(name: ServiceName): ServiceStatusSnapshot;