import type { SessionJSON } from './JSON';
export declare class Session {
    readonly id: string;
    readonly clientId: string;
    readonly userId: string;
    readonly status: string;
    readonly lastActiveAt: number;
    readonly expireAt: number;
    readonly abandonAt: number;
    readonly createdAt: number;
    readonly updatedAt: number;
    constructor(id: string, clientId: string, userId: string, status: string, lastActiveAt: number, expireAt: number, abandonAt: number, createdAt: number, updatedAt: number);
    static fromJSON(data: SessionJSON): Session;
}
//# sourceMappingURL=Session.d.ts.map