import { Parameter } from "./../index";
export interface HttpSettingsHeaderEntryInterface {
    name?: string;
    value?: string;
}
export declare class HttpSettingsHeaderEntry implements HttpSettingsHeaderEntryInterface, Parameter {
    name?: string;
    value?: string;
    constructor(data: any);
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getValueDefault(): string;
    static getValueDescription(): string;
    static fromJson(data: any): HttpSettingsHeaderEntry;
    toJson(): any;
    clone(): HttpSettingsHeaderEntry;
}
