interface RAGResponse {
    answer: string;
    sources?: string[];
}
export declare function queryRAG(question: string, context?: string): Promise<RAGResponse>;
export declare function isRAGAvailable(): Promise<boolean>;
export {};
//# sourceMappingURL=rag-client.d.ts.map