import { type CallExpression } from 'ng-morph'; /** * Checks if the given call expression is a method call on the given service. */ export declare function isServiceMethodCall(call: CallExpression, serviceName: string, methodName: string): boolean;