interface UpdatePopoverProps { visible: boolean; currentVersion: string; latestVersion: string; packageName: string; onClose: () => void; } declare const UpdatePopover: ({ visible, currentVersion, latestVersion, packageName, onClose }: UpdatePopoverProps) => import("node_modules/@types/react/jsx-runtime").JSX.Element | null; export default UpdatePopover;