import { OauthClientConfig, RefreshTokenFuncConfig } from "../interfaces";
/**
 * Refresh a token
 * @param props function property
 */
export default function refreshToken<T = any>(props: {
    params: RefreshTokenFuncConfig<T>;
    accessTokenUrl: string;
    config: OauthClientConfig;
    onSuccess: (data: any) => void;
}): Promise<void>;
