import React from 'react';
interface AnswerResponse {
    answer: string;
    relatedConcepts: string[];
    furtherReadings?: string[];
}
export interface AnswerQuestionComponentProps {
    title?: string;
    description?: string;
    onAnswer?: (question: string, answer: AnswerResponse) => void;
    className?: string;
}
export declare const AnswerQuestionComponent: React.FC<AnswerQuestionComponentProps>;
export {};
