import { ClientDisplayableError, User } from '@standardnotes/responses' import { Base64String } from '@standardnotes/sncrypto-common' export interface SessionsClientInterface { createDemoShareToken(): Promise populateSessionFromDemoShareToken(token: Base64String): Promise getUser(): User | undefined }