import { Parameter } from "./../index";
export interface ErrorCountServerStateInterface {
    code?: number;
    count?: number;
    description?: string;
}
export declare class ErrorCountServerState implements ErrorCountServerStateInterface, Parameter {
    code?: number;
    count?: number;
    description?: string;
    constructor(data: any);
    static getCodeDefault(): number;
    static getCodeDescription(): string;
    static getCountDefault(): number;
    static getCountDescription(): string;
    static getDescriptionDefault(): string;
    static getDescriptionDescription(): string;
    static fromJson(data: any): ErrorCountServerState;
    toJson(): any;
    clone(): ErrorCountServerState;
}
