class Component: """ The base Component interface defines operations that can be altered by decorators. """ def operation(self) -> str: pass