import type { TSESTree } from '@typescript-eslint/typescript-estree'; import { CallExpression } from '../guards'; type Node = TSESTree.Node; export declare function findMemberCall(root: Node, object: string, property: string): CallExpression | undefined; export {};