Sure, git stash show supports this:
git stash show -p
So, use
git stash list
to find out the number of the stash that you want to export as a patch, then
git stash show -p stash@{<number>} > <name>.patch
to export it.
For example:
git stash show -p stash@{3} > third_stash.patch