1import sys
2from typing import List, Optional, Tuple
3
4if sys.platform == "win32":
5
6    ActionText: List[Tuple[str, str, Optional[str]]]
7    UIText: List[Tuple[str, Optional[str]]]
8
9    tables: List[str]
10