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