/** * `supen start/stop/status` — Control the Supen system service. * * Works with the daemon installed at ~/.supen/daemon/ via npm. */ export declare const LAUNCHD_SERVICE_LABEL = "ai.supen.daemon"; export declare function restartMacosDaemonService(): string; export declare function restartHostDaemonService(): string; export declare function start(): Promise; export declare function stop(): Promise; export declare function status(): Promise;