import { DeserializedSearchResult } from "../types"; type Props = { question?: string; answer?: string; searchResults?: DeserializedSearchResult[]; onRetry?: () => void; }; /** * A component that encompasses a chat question-answer pair. * Defaults to showing just the user-supplied message, if it has not yet been answered. * Otherwise, shows both question and answer, plus applicable references. */ export declare const ChatItem: ({ question, answer, searchResults, onRetry }: Props) => JSX.Element; export {};