import { Parameter } from "./../index";
export interface HttpBasicAuthInterface {
    password?: string;
    userName?: string;
}
export declare class HttpBasicAuth implements HttpBasicAuthInterface, Parameter {
    password?: string;
    userName?: string;
    constructor(data: any);
    static getPasswordDefault(): string;
    static getPasswordDescription(): string;
    static getUserNameDefault(): string;
    static getUserNameDescription(): string;
    static fromJson(data: any): HttpBasicAuth;
    toJson(): any;
    clone(): HttpBasicAuth;
}
