import { ExecutionContext, Recipe, TreeVisitor, DataTable } from "@openrewrite/rewrite"; export declare class MethodCallRecord { readonly sourceFile: string; readonly methodName: string; readonly code: string; constructor(sourceFile: string, methodName: string, code: string); static dataTable: DataTable; } export declare class FindMethodCalls extends Recipe { name: string; displayName: string; description: string; methodName: string; constructor(options: { methodName: string; }); findings: DataTable; editor(): Promise>; } //# sourceMappingURL=find-method-calls.d.ts.map