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