export type Command = 'mcp' | 'warmup' | 'serve' | 'health' | 'doctor' | 'auth' | 'plugin' | 'shell' | 'init' | 'config' | 'dashboard' | 'uninstall' | 'setup' | 'status' | 'tune' | 'backfill' | 'verify' | 'skills' | 'search' | 'fetch' | 'crawl' | 'extract' | 'cache' | 'find-similar' | 'find_similar' | 'research' | 'agent' | 'diff' | 'watch' | 'help' | 'version' | 'unknown'; export interface ParsedCommand { command: Command; args: string[]; } export declare function parseCommand(argv: string[]): ParsedCommand; //# sourceMappingURL=index.d.ts.map