/** * Command Interceptor * * Automatically wraps all CLI commands with agentic-flow + AgentDB * Based on .iris/config/settings.json preferences */ /** * Intercept and execute command with smart defaults */ export declare function interceptCommand(commandName: string, commandFn: (...args: any[]) => Promise, ...args: any[]): Promise; /** * Decorator for auto-intercepting commands */ export declare function withSmartDefaults(commandFn: (...args: any[]) => Promise): (...args: any[]) => Promise; /** * Check if smart execution is enabled */ export declare function isSmartExecutionEnabled(): Promise; /** * Display smart execution banner */ export declare function showSmartExecutionBanner(): Promise; //# sourceMappingURL=interceptor.d.ts.map