from typing import Any

UserModel: Any

def check_password(environ: dict[Any, Any], username: str, password: str) -> Any: ...
def groups_for_user(environ: dict[Any, Any], username: str) -> Any: ...
