export interface ClientStorage {
  get(key: string): any;

  set(key: string, value: any, expires?: Date): void;

  remove(key: string): void;
}
