export declare const EsLintRemovedRules: { readonly GeneratorStar: "generator-star"; readonly GlobalStrict: "global-strict"; readonly NoArrowCondition: "no-arrow-condition"; readonly NoCommaDangle: "no-comma-dangle"; readonly NoEmptyClass: "no-empty-class"; readonly NoEmptyLabel: "no-empty-label"; readonly NoExtraStrict: "no-extra-strict"; readonly NoReservedKeys: "no-reserved-keys"; readonly NoSpaceBeforeSemi: "no-space-before-semi"; readonly NoWrapFunc: "no-wrap-func"; readonly SpaceAfterFunctionName: "space-after-function-name"; readonly SpaceAfterKeywords: "space-after-keywords"; readonly SpaceBeforeFunctionParentheses: "space-before-function-parentheses"; readonly SpaceBeforeKeywords: "space-before-keywords"; readonly SpaceInBrackets: "space-in-brackets"; readonly SpaceReturnThrowCase: "space-return-throw-case"; readonly SpaceUnaryWordOps: "space-unary-word-ops"; readonly SpacedLineComment: "spaced-line-comment"; }; export declare type EsLintRemovedRule = (typeof EsLintRemovedRules)[keyof typeof EsLintRemovedRules]; export declare type EsLintRemovedRules = typeof EsLintRemovedRules; export declare const isEsLintRemovedRule: (value: unknown) => value is EsLintRemovedRule;