export type RecoveryStorage = { read(key: string): Promise; write(key: string, value: string): Promise; remove(key: string): Promise; };