export type RootHelpOption = { flags: string; description: string; }; export type RootHelpCommand = { name: string; description: string; }; export declare const ROOT_COMMAND_DESCRIPTION = "Ultra-Lightweight Personal AI Assistant. Run `xopc` with no command to open the local TUI."; export declare const ROOT_HELP_OPTIONS: RootHelpOption[]; export declare const ROOT_HELP_COMMANDS: RootHelpCommand[]; export declare function formatRootHelp(): string;