import { SqrlKey } from "../"; import { SqrlObject } from "./SqrlObject"; export default class SqrlSession extends SqrlObject { key: SqrlKey; startMs: number; readonly id: string; constructor(key: SqrlKey, startMs: number); tryGetTimeMs(): number; getData(): { id: string; key: { key: string; shardValue: number; counter: { type: string; value: string; uniqueId: { time: string; remaining: number; }; }; time: string; featureValues: any[]; }; startMs: number; }; render(): import("sqrl-common").RenderedSpan; getBasicValue(): string; }