import type { AiScorerResult, AiSource } from './types.js'; export interface AvailableCLIs { gemini: boolean; copilot: boolean; } export declare function detectAvailableCLIs(): Promise; export declare function scoreWithExternalCLI(source: AiSource, html: string, url: string): Promise; export declare function scoreWithAllAvailable(html: string, url: string, available: AvailableCLIs): Promise;