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