/** * 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: anchor-is-valid * Enforce that anchors are valid, navigable elements * * @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules/anchor-is-valid.md */ import type { TSESLint } from '@interlace/eslint-devkit'; type MessageIds = 'invalidHref' | 'noHref' | 'preferButton'; type Options = { components?: string[]; specialLink?: string[]; aspects?: string[]; }; type RuleOptions = [Options?]; export declare const anchorIsValid: TSESLint.RuleModule & { name: string; }; export {};