export interface SEOCheck {
    name: string;
    pass: boolean | "partial";
    points: number;
    maxPoints: number;
    hint: string;
}
export interface SEOScoreResult {
    score: number;
    checks: SEOCheck[];
    color: "green" | "orange" | "red";
    label: string;
}
export declare function computeSEOScore(value: Record<string, any> | undefined): SEOScoreResult;
