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