/** * Copyright (c) 2025 Ofri Peretz * Licensed under the MIT License. Use of this source code is governed by the * MIT license that can be found in the LICENSE file. */ /** * ESLint Rule: no-interactive-element-to-noninteractive-role * Enforce that interactive elements don't have non-interactive ARIA roles * * @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules/no-interactive-element-to-noninteractive-role.md */ import type { TSESLint } from '@interlace/eslint-devkit'; type Options = Record; type RuleOptions = [Options?]; export declare const noInteractiveElementToNoninteractiveRole: TSESLint.RuleModule<"interactiveToNoninteractive", RuleOptions, unknown, TSESLint.RuleListener> & { name: string; }; export {};