import type { TSESTree } from '@typescript-eslint/types'; import type { Reference } from '../referencer/Reference'; import type { ScopeManager } from '../ScopeManager'; import type { Variable } from '../variable'; import type { Scope } from './Scope'; import { ScopeBase } from './ScopeBase'; import { ScopeType } from './ScopeType'; declare class FunctionScope extends ScopeBase { constructor(scopeManager: ScopeManager, upperScope: FunctionScope['upper'], block: FunctionScope['block'], isMethodDefinition: boolean); protected isValidResolution(ref: Reference, variable: Variable): boolean; } export { FunctionScope }; //# sourceMappingURL=FunctionScope.d.ts.map