import { FC } from 'react'; import { Session } from '@glodon-aiot/bot-client-sdk'; interface HistorySessionListProps { currentSessionId: string; onSessionChange?: (sessionId: string, session?: Session | null) => void; onClose: VoidFunction; } declare const HistorySessionList: FC; export default HistorySessionList;