export interface ISessionStorageConfig {
    /** Determines if the storage can be used for single use only */
    readonly singleUseStorageOnly?: boolean;
    /** 0 means that session never expires */
    lifeTimeMS?: number;
    /** whether we will allow to create a new session with a specified id */
    allowForeignSessionIds?: boolean;
    /** Custom configuration */
    [key: string]: any;
}
