/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. * See ./LICENSE for license information. */ import type { Rule } from 'eslint'; interface Plugin { rules: { syntax: Rule.RuleModule; }; } declare const plugin: Plugin; export default plugin; //# sourceMappingURL=index.d.ts.map