import { Parameter } from "./../index";
export interface CiphersHttpSettingsSSLInterface {
    cipher: Array<string>;
}
export declare class CiphersHttpSettingsSSL implements CiphersHttpSettingsSSLInterface, Parameter {
    cipher: Array<string>;
    constructor(data: any);
    static getCipherDefault(): Array<string>;
    static getCipherDescription(): string;
    static fromJson(data: any): CiphersHttpSettingsSSL;
    toJson(): any;
    clone(): CiphersHttpSettingsSSL;
}
