import { ReactElement } from "react"; import Backend from "./Backend"; declare const useSessions: () => [{ host: string; token: string; }, (host: string, token: string) => void, () => void, (backend: Backend) => void, ReactElement>]; export default useSessions;