import type { Rule } from "../types.js"; interface TypoHit { prop: "font-size" | "font-weight" | "letter-spacing"; raw: string; scaleKey: string; index: number; } declare function extractTypography(text: string): TypoHit[]; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { extractTypography: typeof extractTypography; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};