import { default as React } from 'react'; import { IHistory, IApplication } from '@glodon-aiot/apis'; import { Session } from '@glodon-aiot/bot-client-sdk'; import { MarkdownProps } from '@glodon-aiot/react-components/dist/src/components/Markdown'; interface HistoryItemProps { application: IApplication; currentSession?: Session | null; isLastHistory?: boolean; history: IHistory; onRelatedClick?: (val: any) => void; onAgainClick?: VoidFunction; onEditClick?: (val: string) => void; isLoading?: boolean; docViewerUrl?: string; actions?: boolean; markdown?: Partial; } export declare const isResultExec: (result?: string) => boolean; declare const HistoryItem: React.FC; export default HistoryItem;