{warning}

from __future__ import annotations

from pyrogram.raw.core import TLObject

class {name}(TLObject):  # type: ignore
    """{docstring}
    """

    QUALNAME = "pyrogram.raw.base.{qualname}"

    def __init__(self):
        raise TypeError("Base types can only be used for type checking purposes")
