/**
 * Enhanced Tool Examples
 * Shows how existing ai-debug tools can be upgraded with rich metadata
 */
import { EnhancedTool } from '../types/enhanced-tool-metadata';
/**
 * Example: Enhanced inject_debugging tool with rich metadata
 */
export declare const enhancedInjectDebugging: EnhancedTool;
/**
 * Example: Enhanced take_screenshot tool with background monitoring capability
 */
export declare const enhancedTakeScreenshot: EnhancedTool;
/**
 * Example: Enhanced run_audit tool with comprehensive metadata
 */
export declare const enhancedRunAudit: EnhancedTool;
/**
 * Example: Enhanced simulate_user_action tool with smart interaction patterns
 */
export declare const enhancedSimulateUserAction: EnhancedTool;
/**
 * Collection of enhanced tool examples
 */
export declare const enhancedToolExamples: EnhancedTool[];
/**
 * Utility function to convert existing tools to enhanced format
 */
export declare function enhanceExistingTool(existingTool: {
    name: string;
    description: string;
    inputSchema: any;
}, metadata: Partial<EnhancedTool['metadata']>): EnhancedTool;
//# sourceMappingURL=enhanced-tool-examples.d.ts.map