import type { ClientJSON } from './JSON';
import { Session } from './Session';
export declare class Client {
    readonly id: string;
    readonly sessionIds: string[];
    readonly sessions: Session[];
    readonly signInId: string | null;
    readonly signUpId: string | null;
    readonly lastActiveSessionId: string | null;
    readonly createdAt: number;
    readonly updatedAt: number;
    constructor(id: string, sessionIds: string[], sessions: Session[], signInId: string | null, signUpId: string | null, lastActiveSessionId: string | null, createdAt: number, updatedAt: number);
    static fromJSON(data: ClientJSON): Client;
}
//# sourceMappingURL=Client.d.ts.map