import type { ServiceManager, ServiceStatus, ServiceInstallOptions, ServiceResult } from './index.js'; export declare class SystemdService implements ServiceManager { platform: "linux"; serviceName: string; private get unitPath(); status(): Promise; install(options?: ServiceInstallOptions): Promise; uninstall(): Promise; start(): Promise; stop(): Promise; restart(): Promise; getLogPaths(): { stdout: string; stderr: string; }; private generateUnit; } //# sourceMappingURL=systemd.d.ts.map