import type { SessionRecord as HubSessionRecord, SessionParticipant } from "@clinebot/shared"; import type { SessionRecord as LocalSessionRecord } from "../../types/sessions"; export type HubSessionState = { createdByClientId: string; interactive: boolean; participants: Map; }; export declare function toHubSessionRecord(session: LocalSessionRecord, state?: HubSessionState): HubSessionRecord;