/** Get public folder quota usage in total available space */
export interface PublicFolderQuota {
    /** total amount of space in MB for public folders within organization */
    quotaLimit: number;
    /** space in MB already reserved from the quota limit */
    quotaReserved: number;
    /** currently used space in MB within all public folders */
    quotaUsed: number;
}
//# sourceMappingURL=PublicFolderQuota.d.ts.map