/** * Utility functions for file editing tools */ /** * Escape regular expression special characters */ export declare function escapeRegExp(string: string): string; /** * Returns an error message when old_string is not found, including * the attempted string to help the model self-correct on retry. */ export declare function analyzeEditMismatch(oldString: string): string;