import type { SourceCode } from 'eslint'; import type { Variable } from 'eslint-scope'; import type * as ESTree from 'estree'; export declare function findVariable({ identifier, sourceCode, }: { identifier: ESTree.Identifier; sourceCode: SourceCode; }): Variable | null;