export type FreshnessConfidence = 'extracted' | 'inferred-url' | 'inferred-html' | 'inferred-llm' | 'unknown'; export interface FreshnessSignal { published_date?: string; inferred: boolean; confidence: FreshnessConfidence; } export declare function computeFreshnessSignal(url: string, publishedDate: string | undefined): FreshnessSignal | undefined; //# sourceMappingURL=freshness.d.ts.map