import { default as React, ReactNode, Dispatch, SetStateAction } from 'react'; import { Session } from '@glodon-aiot/bot-client-sdk'; export interface SessionContextValue { sessions: Session[]; setSessions: Dispatch>; isSwitchingToExistingSession: boolean; setIsSwitchingToExistingSession: Dispatch>; } declare const SessionContext: React.Context; export interface SessionProviderProps { children: ReactNode; } export declare const SessionProvider: React.FC; export declare const useSessionContext: () => SessionContextValue; export default SessionContext;