export interface ISyncUserQuotaJob { userId: string; businessId: string; wildduckUserId: string; } export interface ISyncBusinessQuotaJob { businessId: string; businessName: string; } export type ISyncAllUsersQuotaJob = Record; export type ISyncAllBusinessesQuotaJob = Record; export type ISyncComprehensiveQuotaJob = Record;