import React from 'react'; import { DocMeta, WhiteBoxProcessInterface } from '.'; import { MarkdownEditorProps } from '../MarkdownEditor'; /** * RagRetrievalInfo 组件显示搜索查询和检索结果。 * * @param props - 组件的属性。 * @param props.onMetaClick - 当元数据项被点击时的回调函数。 * @param props.input - 包含搜索查询的输入数据。 * @param props.category - 类别类型,用于确定是否显示检索结果。 * @param props.output - 包含检索块的输出数据。 * @param props.costMillis - 检索过程的耗时(毫秒)。 * * @returns 显示搜索查询和检索结果的 JSX 元素。 */ export declare const RagRetrievalInfo: (props: { onMetaClick: (meta: DocMeta) => void; isFinished?: boolean | undefined; markdownRenderProps?: MarkdownEditorProps | undefined; } & WhiteBoxProcessInterface) => React.JSX.Element;