SyncStorage
type SyncStorage = {  getItem: (key: string) => null | string;  removeItem: (key: string) => void;  setItem: (key: string, value: string) => void;};
function getItem(key: string): null | string;
function removeItem(key: string): void;
function setItem(key: string, value: string): void;