import { HttpSettingsSSLProtocol, Parameter } from "./../index";
export interface ProtocolsHttpSettingsSSLInterface {
    protocol: Array<HttpSettingsSSLProtocol>;
}
export declare class ProtocolsHttpSettingsSSL implements ProtocolsHttpSettingsSSLInterface, Parameter {
    protocol: Array<HttpSettingsSSLProtocol>;
    constructor(data: any);
    static getProtocolDescription(): string;
    static fromJson(data: any): ProtocolsHttpSettingsSSL;
    toJson(): any;
    clone(): ProtocolsHttpSettingsSSL;
}
