import { Parameter } from "./../index";
export interface JavaStatusGCInterface {
    collectionCount?: number;
    collectionTime?: number;
    name?: string;
}
export declare class JavaStatusGC implements JavaStatusGCInterface, Parameter {
    collectionCount?: number;
    collectionTime?: number;
    name?: string;
    constructor(data: any);
    static getCollectionCountDefault(): number;
    static getCollectionCountDescription(): string;
    static getCollectionTimeDefault(): number;
    static getCollectionTimeDescription(): string;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): JavaStatusGC;
    toJson(): any;
    clone(): JavaStatusGC;
}
