/** Get shared account quota usage in total available space */
export interface SharedAccountQuota {
    /** total amount of space in MB for shared accounts within organization */
    quotaLimit: number;
    /** space in MB already reserved from the quota limit */
    quotaReserved: number;
    /** currently used space in KB within all shared accounts */
    quotaUsed: number;
    /** amount of space in MB available for single shared account */
    singleMailboxQuotaLimit: number;
}
//# sourceMappingURL=SharedAccountQuota.d.ts.map