# COMPLETE

import typing_extensions
from collections.abc import Mapping
from pathlib import Path
from typing import Any

_Style: typing_extensions.TypeAlias = str | Path | Mapping[str, Any]
_StyleOrList: typing_extensions.TypeAlias = _Style | list[_Style]

def context(style: _StyleOrList, after_reset: bool = ...) -> None: ...
def reload_library() -> None: ...
def use(style: _StyleOrList) -> None: ...

library: dict[str, Any]
available: list[str]
