TION: int MB_ICONHAND: int MB_ICONQUESTION: int MB_OK: int def Beep(frequency: int, duration: int) -> None: ... # Can actually accept anything ORed with 4, and if not it's definitely str, but that's inexpressible @overload def PlaySound(sound: Optional[bytes], flags: Literal[4]) -> None: ... @overload def PlaySound(sound: Optional[Union[str, bytes]], flags: int) -> None: ... def MessageBeep(type: int = ...) -> None: ... PK