import { Base, Id } from '../../../memi'; declare const Type: readonly ["WORK_ORDER_CREATED_SCHEDULED", "WORK_ORDER_CANCELED_SCHEDULED", "WORK_ORDER_RESCHEDULED", "UTK_PRINTER_NAME_CHANGED", "UTK_PRINTER_POWER_CALIBRATION", "UTK_PRINTER_EXECUTE_READY", "UTK_PRINTER_DISABLE", "UTK_PRINTER_ENABLE", "UTK_PRINTER_MATERIAL_CHANGE", "UTK_PRINTER_BP_CHANGE", "WORK_ORDER_PAUSE", "WORK_ORDER_RESTORE", "UTK_PRINTER_SPECKLE_MODEL_CHANGED", "WORK_ORDER_TERMINATE"]; export declare type OperationLogType = typeof Type[number]; declare const EntityType: string[]; export declare type OperationLogEntityType = typeof EntityType[number]; export declare class UtkPrinterOperationLog extends Base { entityId: Id; operatorId: Id; utkPrinterId: Id; operator: string; operationContent: string; type: OperationLogType; entityType: OperationLogEntityType; level: 'DANGER' | 'IMPORTANT' | 'ORDINARY'; constructor(props?: Partial); } export {};