from queue import Queue
from typing import Any

class LifoQueue(Queue[Any]): ...
