import type { Rule } from "../types.js"; import { type DtcgDocument } from "../tokens/dtcg-model.js"; declare function isSemanticTokenPath(path: string[]): boolean; interface CoverageStats { semanticCount: number; semanticWithDescription: number; } declare function walkForCoverage(doc: DtcgDocument): CoverageStats; export declare const rule: Rule; export declare const _internal: { walkForCoverage: typeof walkForCoverage; isSemanticTokenPath: typeof isSemanticTokenPath; COVERAGE_THRESHOLD: number; }; export {};