import type { Rule, TokenMap } from "../types.js"; interface ShadowHit { raw: string; index: number; } declare function extractShadows(text: string): ShadowHit[]; declare function shadowScaleSet(tokens: TokenMap | null): Set; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { extractShadows: typeof extractShadows; shadowScaleSet: typeof shadowScaleSet; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};