import { HttpClient, HttpClientOptions } from "./HttpClient";
/**
 * A class to be extended by the other client classes.
 *
 * @abstract
 * @category SDK
 * @subcategory Internal
 * @param {string} api - The URL of your Hanko API instance
 * @param {HttpClientOptions} options - The options that can be used
 */
declare abstract class Client {
    client: HttpClient;
    constructor(api: string, options: HttpClientOptions);
}
export { Client };
