I just noticed I missed the "multiple result sets" in the original question. Multiple result sets are currently not supported. For a single result set you can use Slick plain sql queries, optionally using the interpolation syntax like this:
sql"{call myproc($a, $b)}".as[(String, Int, Int)]
For type-safe embedding of scalar functions please refer to the documentation linked before and search for SimpleFunction.
Chris