import { type TSESTree } from '@typescript-eslint/utils'; export declare const findMetaCallExpression: (node: TSESTree.VariableDeclarator | TSESTree.Property | TSESTree.CallExpressionArgument) => TSESTree.CallExpression | undefined; export declare const getIdentifier: (node: T) => TSESTree.Identifier | undefined; export declare const getBaseIdentifier: (identifier: TSESTree.Identifier) => TSESTree.Node | undefined;