export interface IDeviceRegistrationBulkResult {
    /**
     * Result list of updated credentials
     */
    credentialUpdatedList: any[];
    /**
     * Failed creations as list
     */
    failedCreationList: any[];
    /**
     * Count of all results
     */
    numberOfAll: number;
    /**
     * Count of newly created
     */
    numberOfCreated: number;
    /**
     * Count of failed
     */
    numberOfFailed: number;
    /**
     * Count of successful
     */
    numberOfSuccessful: number;
}
//# sourceMappingURL=IDeviceRegistrationBulkResult.d.ts.map