import { AbstractEntity } from '../../../../abstractEntity'; import { SecurityChecks, SecurityChecksType } from './securityChecks'; export declare enum ChecksFields { COLUMN_CHECKS = "checks", COLUMN_UPDATED_AT = "updatedAt" } export declare type ChecksType = { [ChecksFields.COLUMN_CHECKS]: Array; [ChecksFields.COLUMN_UPDATED_AT]: string; }; export declare class Checks extends AbstractEntity { #private; constructor(checksDataInput: ChecksType); get checks(): Array; get updatedAt(): string; toJSON(): ChecksType; }