import type { ParserServicesWithTypeInformation, TSESTree } from '@typescript-eslint/typescript-estree'; import type * as ts from 'typescript'; /** * Gets the declaration for the given variable */ export declare function getDeclaration(services: ParserServicesWithTypeInformation, node: TSESTree.Node): ts.Declaration | null;