/** * 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: img-redundant-alt * Enforce img alt attribute does not contain redundant words * * @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules/img-redundant-alt.md */ import type { TSESLint } from '@interlace/eslint-devkit'; type Options = { components?: string[]; words?: string[]; }; type RuleOptions = [Options?]; export declare const imgRedundantAlt: TSESLint.RuleModule<"redundantAlt", RuleOptions, unknown, TSESLint.RuleListener> & { name: string; }; export {};