import { AnyFunction } from '../utils/AnyFunction'; /** * Calls an object method wrapped in an action. * * @param node Target object. * @param methodName Method name. */ export declare function applyMethodCall(node: O, methodName: K, ...args: FN extends AnyFunction ? Parameters : never): FN extends AnyFunction ? ReturnType : never;