module Control.Monad.Trans public export interface MonadTrans (t : (Type -> Type) -> Type -> Type) where lift : Monad m => m a -> t m a