import { GrantEnum } from '../grant/GrantEnum';
/** Users */
export interface Database {
    /** Database granted for this user */
    databaseName: string;
    /** The grantId associated for this databaseName and this userName */
    grantId: number;
    /** User's rights on this database */
    grantType: GrantEnum;
}
//# sourceMappingURL=Database.d.ts.map