/** * CogmemAi CLI — Setup wizard, verification, and hook commands. * * Usage: * npx cogmemai-mcp setup Interactive setup for Claude Code * npx cogmemai-mcp setup Setup with API key provided * npx cogmemai-mcp verify Verify API key and connection * cogmemai-mcp hook precompact PreCompact hook (saves context before compaction) * cogmemai-mcp hook context-reload Post-compaction context reload */ export declare function runSetup(providedKey?: string): Promise; export declare function runVerify(): Promise; export declare function runHookPrecompact(): Promise; export declare function runHookContextReload(): Promise; export declare function runHookSessionStart(): Promise; export declare function runHookPostToolUse(): Promise; export declare function runHookPostToolUseEdit(): Promise; export declare function runHookStop(): Promise; export declare function configureHooks(): { success: boolean; error?: string; }; export declare function showHelp(): void;