export declare function buildScoringPrompt(htmlContent: string, url: string): string; export interface AiScoreResponse { score: number; structure: number; citability: number; schema: number; aiMetadata: number; contentDensity: number; insight: string; } export declare function parseAiResponse(raw: string): AiScoreResponse | null;