import Config from "./config";
import ClientInterface from "./httpClient/clientInterface";
declare class Client {
    static ENDPOINT_PILOT: string;
    static ENDPOINT_LIVE: string;
    private _httpClient;
    config: Config;
    constructor(config: Config);
    setEnvironment(environment: Environment): void;
    get httpClient(): ClientInterface;
    set httpClient(httpClient: ClientInterface);
    setTimeouts(connectionTimeoutMillis: number, readTimeoutMillis: number): void;
}
export default Client;
