import { Parameter, ProtocolsHttpSettingsSSL, CiphersHttpSettingsSSL } from "./../index";
export interface HttpSettingsSSLInterface {
    ciphers?: CiphersHttpSettingsSSL;
    protocols?: ProtocolsHttpSettingsSSL;
}
export declare class HttpSettingsSSL implements HttpSettingsSSLInterface, Parameter {
    ciphers?: CiphersHttpSettingsSSL;
    protocols?: ProtocolsHttpSettingsSSL;
    constructor(data: any);
    static getCiphersDescription(): string;
    static getProtocolsDescription(): string;
    static fromJson(data: any): HttpSettingsSSL;
    toJson(): any;
    clone(): HttpSettingsSSL;
}
