import { Base, Id } from '../../../memi'; import { Bp } from './Bp'; import { UtkMaterial } from './UtkMaterial'; import { UtkPrinterConfig } from './UtkPrinter'; import { UtkPrinterModel } from './UtkPrinterModel'; /** 打印机配置数据 */ export declare class UtkPrinterConfigFileParse extends Base { utkPrinterId: Id; utkPrinterCode: string; utkPrinterName: string; utkPrinterModel: UtkPrinterModel; storageDate: string; warrantyExpirationDate: string; variableSpot: boolean; material: UtkMaterial; bp: Bp; brand: string; shapeSize: string; weight: string; position: string; voltage: string; power: string; temperature: string; humidity: string; storeAt: string; guaranteeExpireAt: string; constructor(props?: Partial); }