import type { Scope } from 'eslint'; /** * This will search first matched identifier in same and parent scopes. * Returns first matched identifer otherwise null. */ export declare function findIdentifierInParentScope({ scope, identifierName, }: { scope: Scope.Scope; identifierName: string; }): Scope.Variable | null;