/**
 * Error than can be thrown in `AbstractProvider.getUserFromTokens` if the request to the
 * resource server is unsuccessful.
 *
 * @export
 * @class UserInfoError
 * @extends {Error}
 */
export declare class UserInfoError extends Error {
    readonly error: any;
    readonly name = "UserInfoError";
    constructor(error: any);
}
