import { FC, Dispatch, SetStateAction } from 'react'; import { Session } from '@glodon-aiot/bot-client-sdk'; import { IApplication } from '@glodon-aiot/apis'; interface SessionHistoryDrawerProps { disabled?: boolean; currentSession?: Session | null; application: IApplication; networkStatus: boolean; setCurrentSession?: Dispatch>; isSessionHistoryVisible: boolean; setIsSessionHistoryVisible: Dispatch>; onSessionChange?: (session: Session) => void; } declare const SessionHistoryDrawer: FC; export default SessionHistoryDrawer;