/**
 * Interface to gather more information about the process
 * of performed bulk operation.
 */
export interface IOperationBulkProgress {
    /**
     * Count of processed operations
     */
    all: number;
    /**
     * Count of pending operations
     */
    pending: number;
    /**
     * Count of executing operations
     */
    executing: number;
    /**
     * Count of successful operations
     */
    successful: number;
    /**
     * Count of failed operations
     */
    failed: number;
}
//# sourceMappingURL=IOperationBulkProgress.d.ts.map