import type { TSESTree } from '@typescript-eslint/types'; import { Identifier } from './identifier'; import { Generics } from './generics'; export declare class CallExpression { readonly node: TSESTree.CallExpression; constructor(node: TSESTree.CallExpression); isExpression(name: string): boolean; get name(): string; get arguments(): Identifier[]; get generics(): Generics | undefined; private get callee(); } //# sourceMappingURL=callExpression.d.ts.map