import { Parameter } from "./../index";
export interface HttpProxyInterface {
    address?: string;
    password?: string;
    port?: number;
    userName?: string;
}
export declare class HttpProxy implements HttpProxyInterface, Parameter {
    address?: string;
    password?: string;
    port?: number;
    userName?: string;
    constructor(data: any);
    static getAddressDefault(): string;
    static getAddressDescription(): string;
    static getPasswordDefault(): string;
    static getPasswordDescription(): string;
    static getPortDefault(): number;
    static getPortDescription(): string;
    static getPortMin(): number;
    static getUserNameDefault(): string;
    static getUserNameDescription(): string;
    static fromJson(data: any): HttpProxy;
    toJson(): any;
    clone(): HttpProxy;
}
