import { IProxy } from "./httpClient";
export interface IBasicAuth {
    "username": string;
    "password": string;
}
export interface IServerOptions {
    "url": string;
    "basicAuth": IBasicAuth;
    "proxy"?: IProxy;
    "logRequestResponse"?: boolean;
}
export default class Server {
    url: string;
    basicAuth: IBasicAuth;
    proxy?: IProxy;
    logRequestResponse: boolean;
    constructor(options: IServerOptions);
}
