/** * `supen daemon` — Direct daemon control. * * Subcommands: * supen daemon status Is daemon responding? * supen daemon reload Reload daemon runtime config * supen daemon restart Restart daemon process * supen daemon logs [--lines N] Tail daemon logs * supen daemon config Show daemon config * supen daemon install Pull and run daemon container from GHCR * supen daemon uninstall Remove daemon container * supen daemon update Refresh daemon container image */ import { Command } from 'commander'; export declare function registerDaemonCommand(program: Command): void;