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