Hi,
You can think of implementing two stage model here. In the first stage, you can predict the probability of a customer who is likely to return (binary classification problem that can be solved with logistic regression). If that probability is high, then in second stage, you can actually calculate the "time to return" (a continuous variable...so essentially you need to build a regression model where target variable is "time to return".
I do not have any readymade example to share. Also, i am not sure what all data is available with you. You can think of following set of features that you can include in your both models:
1. User demographics
2. User characteristics
3. Few geography specific things (e.g. store location, users' residence, how far / near the store is....assuming you have information about the registered users)
Hope this helps,
best,
abhijit