///
import type { RegisterSWOptions } from 'vite-plugin-pwa/types'
import type { Ref } from 'vue'
declare module 'virtual:pwa-register/vue' {
export function useRegisterSW(options?: RegisterSWOptions): {
needRefresh: Ref
offlineReady: Ref
updateServiceWorker: (reloadPage?: boolean) => Promise
}
}
export { }