import type { Rule, TokenMap } from "../types.js"; interface MotionHit { kind: "duration" | "easing"; raw: string; index: number; } declare function extractMotion(text: string): MotionHit[]; declare function motionScaleSets(tokens: TokenMap | null): { durations: Set; easings: Set; }; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { extractMotion: typeof extractMotion; motionScaleSets: typeof motionScaleSets; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};