import type { ParsedCliArgs } from "./cli-args.js"; import type { SystemdDeps } from "./systemd.js"; import type { RunWebCommandOptions } from "./web-command.js"; type Action = "start" | "restart" | "stop" | "status" | "logs"; export declare function runSystemdAgentCommand(args: ParsedCliArgs, action: Action, env: Record, deps?: SystemdDeps): Promise; export declare function runSystemdWebCommand(options: RunWebCommandOptions, deps?: SystemdDeps): Promise; export {}; //# sourceMappingURL=systemd-command.d.ts.map