export interface ISessionValidationModule<T> {
    getSessionKeyData(_sessionData: T): Promise<string>;
    getAddress(): string;
}
