/** * Setup Command * * One-time global MCP configuration writer. * Detects installed AI editors and writes the appropriate MCP config * so the CodraGraph MCP server is available in all projects. */ interface SetupResult { configured: string[]; skipped: string[]; errors: string[]; } export interface RunSetupOptions { /** Suppress the trailing "Next steps" block (used when analyze auto-runs setup). */ skipNextSteps?: boolean; /** Suppress the "CodraGraph Setup" header (used when analyze auto-runs setup). */ compactHeader?: boolean; } export declare const runSetup: (options?: RunSetupOptions) => Promise; export declare const setupCommand: () => Promise; export {};