import { Command } from 'commander'; /** Derive the presence WebSocket URL (…/ws) from the operator-MCP endpoint. */ export declare function officeWsUrl(endpoint: string): string; /** Turn a server WS push into a one-line human notice, or null to ignore it. */ export declare function describePush(msg: Record): string | null; export declare function mcpOperateCommand(program: Command): void;