import type { PWAUpdatePromptUIProps } from "./PWAUpdatePromptUI.types"; declare const usePWAUpdatePromptUI: (props: PWAUpdatePromptUIProps) => { readonly data: { open: boolean; isUpdating: boolean; title: string; description: string; updateLabel: string; }; readonly fns: { handleUpdate: () => void; handleClose: (args_0: any, args_1: string | undefined) => void; }; }; export default usePWAUpdatePromptUI;