/// import { Sessions } from "../../types"; interface SessionListProps { login: (host: string, token: string) => void; sessions: Sessions; rmSession: (key: string) => void; } declare const SessionList: ({ login, sessions, rmSession }: SessionListProps) => JSX.Element; export default SessionList;