import { Parameter } from "./../index";
export interface LogCheckInterface {
    checkType: string;
}
export declare class LogCheck implements LogCheckInterface, Parameter {
    checkType: string;
    constructor(data: any);
    static getCheckTypeDefault(): string;
    static getCheckTypeDescription(): string;
    static fromJson(data: any): LogCheck;
    toJson(): any;
    clone(): LogCheck;
}
