import { Auth0ClientOptions } from '@auth0/auth0-spa-js';
import { HttpAuthenticatedConnectionImp } from '../http.auth.connection.imp';
export declare class HttpAuth0Connection extends HttpAuthenticatedConnectionImp {
    constructor(host: string, auth0Config: Auth0ClientOptions);
    /** overide to check for auth0 callback and login from there */
    isLogged(): Promise<boolean>;
}
