1from typing import List
2
3globals: "_Globals"
4
5class _Globals:
6    dialect_search_modules: List[str]
7    def _register_dialect_impl(self, dialect_namespace: str, dialect_class: type) -> None: ...
8    def _register_operation_impl(self, operation_name: str, operation_class: type, raw_opview_class: type) -> None: ...
9    def append_dialect_search_prefix(self, module_name: str) -> None: ...
10
11def register_dialect(dialect_class: type) -> object: ...
12def register_operation(dialect_class: type) -> object: ...
13