/** * Daemon Constants - Service labels, paths, and configuration values */ export declare function resolveGatewayLaunchAgentLabel(profile?: string): string; export declare function resolveGatewaySystemdServiceName(profile?: string): string; export declare function resolveGatewayWindowsTaskName(profile?: string): string; export declare function resolveLaunchAgentPlistPath(profile?: string): string; export declare function resolveSystemdUnitPath(profile?: string): string; export declare function formatGatewayServiceDescription(params?: { profile?: string; version?: string; }): string; export declare const DEFAULT_GATEWAY_PORT = 18790; export declare const LAUNCH_AGENT_THROTTLE_INTERVAL_SECONDS = 10; export declare const LAUNCH_AGENT_EXIT_TIMEOUT_SECONDS = 20; export declare const SYSTEMD_RESTART_SEC = 5; export declare const SYSTEMD_START_LIMIT_BURST = 5; export declare const SYSTEMD_START_LIMIT_INTERVAL_SEC = 60; export declare const SERVICE_VERSION_ENV_KEY = "XOPC_SERVICE_VERSION";