/** * Enhanced input interaction commands for React-based Electron applications * Focuses on proper event handling and React state management */ /** * Generate the enhanced fill_input command with React-aware event handling */ export declare function generateFillInputCommand(selector: string, value: string, searchText: string): string; /** * Generate the enhanced select_option command */ export declare function generateSelectOptionCommand(selector: string, value: string, text: string): string; /** * Generate page structure analysis command */ export declare function generatePageStructureCommand(): string;