export function getStorage<K extends Array<keyof StorageSync>>(params: {
  kind: "sync"
  keys: K
  callback: (storage: Partial<Pick<StorageSync, K[number]>>) => void
}): void