import { Base } from '../../base/BaseEntity'; /** 设备基准类 */ export declare class Device>> extends Base { code: string; name: string; thingId: string; customerId: string; get searchStr(): string; attrs: T; constructor(props?: Partial>); } /** 设备基准类 */ export declare class DeviceCredentials extends Base { deviceId: string; credentialsId: string; credentialsType: string; credentialsValue: string; constructor(props?: Partial); }