import { Command } from 'commander'; /** * Create service install subcommand - actually installs the OS service */ export declare function createInstallCommand(): Command; /** * Create service uninstall subcommand */ export declare function createUninstallCommand(): Command; /** * Create service start subcommand - starts via daemon service manager */ export declare function createServiceStartCommand(): Command; /** * Create service status subcommand */ export declare function createServiceStatusCommand(): Command; /** * Gateway OS service command group (`xopc gateway service …`). */ export declare function createServiceCommand(): Command;