export type RuleSeverity = 'high' | 'medium' | 'low';
export type RuleCategory = 'security' | 'accessibility' | 'links' | 'performance' | 'seo';
export interface RuleMeta {
    id: string;
    category: RuleCategory;
    severity: RuleSeverity;
    message: string;
    fix?: string;
    helpUri?: string;
    impact?: string;
}
export declare const RULES: Record<string, RuleMeta>;
