import type { Rule } from "../types.js"; declare function isAllowlisted(repoRoot: string): boolean; declare function hasModeInCssSources(cssFiles: { path: string; source: string; skipped?: true; }[]): boolean; declare function hasModeInTokenFiles(repoRoot: string): boolean; declare function hasDtcgModeGroup(node: unknown, depth?: number): boolean; export declare const rule: Rule; export declare const _internal: { isAllowlisted: typeof isAllowlisted; hasModeInCssSources: typeof hasModeInCssSources; hasModeInTokenFiles: typeof hasModeInTokenFiles; hasDtcgModeGroup: typeof hasDtcgModeGroup; DISABLE_DIRECTIVE: string; }; export {};