import type { ServiceName, ServiceStatus } from '../types.js'; export interface SystemctlShowResult { pid?: number; lastExitStatus?: number; activeState?: string; loadState?: string; } export declare function parseSystemctlShow(output: string): SystemctlShowResult; export declare function systemdStatus(name: ServiceName): ServiceStatus;