type ReplacerFn = (content: string, find: string) => Generator; declare class FuzzyEditError extends Error { readonly kind: "not_found" | "ambiguous"; constructor(kind: "not_found" | "ambiguous", message: string); } declare function fuzzyReplace(content: string, oldString: string, newString: string, replaceAll?: boolean): string; declare function fuzzyContains(content: string, find: string): boolean; export { FuzzyEditError, type ReplacerFn, fuzzyContains, fuzzyReplace };