import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { User } from './database/User';
import { Time } from '../../Time';
/** Databases */
export interface Database {
    /** Time of the next backup (every day) */
    backupTime?: Time;
    /** Creation date of the database */
    creationDate: string;
    /** Database name */
    databaseName: string;
    /** Space used by the database */
    quotaUsed: UnitAndValueLong;
    /** Users granted to this database */
    users: User[];
}
//# sourceMappingURL=Database.d.ts.map