import type { TSESTree } from '@typescript-eslint/types'; import { DefinitionBase } from './DefinitionBase'; import { DefinitionType } from './DefinitionType'; export declare class ImportBindingDefinition extends DefinitionBase { readonly isTypeDefinition = true; readonly isVariableDefinition = true; constructor(name: TSESTree.Identifier, node: TSESTree.TSImportEqualsDeclaration, decl: TSESTree.TSImportEqualsDeclaration); constructor(name: TSESTree.Identifier, node: Exclude, decl: TSESTree.ImportDeclaration); }