export interface Source { id: number; url: string; title: string; fetchedAt: number; publishedAt?: number; } export declare function buildSourceTable(sources: Omit[]): Source[]; export declare function renderSourcesMarkdown(sources: Source[]): string; export declare function renderAnswerMarkdown(question: string, answer: string, sources: Source[]): string; //# sourceMappingURL=citations.d.ts.map