import type { Rule } from "../types.js"; interface GradientHit { raw: string; index: number; } declare function extractGradients(text: string): GradientHit[]; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { extractGradients: typeof extractGradients; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};