As another option you can add a type hint to the event and trick it into being a pyqtBoundSignal that has the connect and emit defs
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from PyQt6.QtCore import pyqtBoundSignal
someEvent = pyqtSignal(args) # type: pyqtBoundSignal