import { Recipe, TreeVisitor, ExecutionContext } from '@openrewrite/rewrite'; export declare class ChangeImport extends Recipe { readonly name = "org.yourorg.javascript.change-import"; readonly displayName = "Change import"; readonly description = "Changes an import from one module/member to another, updating all type attributions."; oldModule: string; oldMember: string; newModule: string; newMember?: string; newAlias?: string; constructor(options?: { oldModule?: string; oldMember?: string; newModule?: string; newMember?: string; newAlias?: string; }); editor(): Promise>; } //# sourceMappingURL=change-import.d.ts.map