export interface CliOptions { install: boolean; log: boolean; protocol: 'STDIO' | 'HTTP'; port: number; allowTool: string[]; raw: boolean; loadProjectContext: boolean; projectContextMaxLength: number; enableIntelligentCompression: boolean; thread?: string; command?: string; query?: string | string[]; execute?: string | string[]; doctor?: boolean; config?: string; template?: string; templateVersion?: string; force?: boolean; slackAgent?: string; } export declare function parseCliOptions(): CliOptions;