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