<?php
/**
 * @license MIT
 *
 * Modified by GravityKit using {@see https://github.com/BrianHenryIE/strauss}.
 */

namespace GravityKit\GravityExport\Spatie\Dropbox;

use GravityKit\GravityExport\GuzzleHttp\Exception\ClientException;

interface RefreshableTokenProvider extends TokenProvider
{
    /**
     * @return bool Whether the token was refreshed.
     */
    public function refresh(ClientException $exception): bool;
}
