import Base from '../../common/models/base';
import { JsonValue } from '../../common/types';
export default class SessionEntry extends Base {
    getId: () => string;
    sessionId: string;
    key: string;
    value: JsonValue;
}
