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