At module level there is no difference between Private and Dim.
"Private" seems better to use in order to keep a contrast against variables declared "Public", and may also help in understanding code easier, as HughLerwill mentions.
"Private" cannot be used to declare a variable in a proceedure, as strongm was showing.