/** * ESLint rule requiring the TypeScript `override` keyword when `@override` TSDoc tag is used. * * @remarks * It is purely syntactic and requires no configuration. * * @internal */ import { ESLintUtils } from '@typescript-eslint/utils'; import type { OverrideKeywordRuleOptions } from '../types'; export declare const overrideKeyword: ESLintUtils.RuleModule<"missingOverrideKeyword", [OverrideKeywordRuleOptions], unknown, ESLintUtils.RuleListener>; //# sourceMappingURL=override-keyword.d.ts.map