It appears I can't do exactly what I want with Moose, but I can come very close with Roles. Here is the information from the Moose manual entry for Roles:
Roles Versus Abstract Base Classes
If you are familiar with the concept
of abstract base classes in other
languages, you may be tempted to use
roles in the same way.
You can define an "interface-only"
role, one that contains just a list of
required methods.
However, any class which consumes this
role must implement all of the
required methods, either directly or
through inheritance from a parent. You
cannot delay the method requirement
check so that they can be implemented
by future subclasses.
Because the role defines the required
methods directly, adding a base class
to the mix would not achieve anything.
We recommend that you simply consume
the interface role in each class which
implements that interface.