import type { Rule } from "../types.js"; /** * Walk JSX for inline `` elements that have NO accessible treatment: * no aria-hidden / role / aria-label / aria-labelledby attribute AND no * `` child. Returns the offenders plus the total svg count (for the * scored opportunity denominator). */ declare function scanBareSvgs(source: string): { offenders: { line: number; column: number; }[]; total: number; }; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { scanBareSvgs: typeof scanBareSvgs; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};