import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class AuthenticationMode { Type?: Value; Passwords?: List>; constructor(properties: AuthenticationMode); } export interface UserProperties { AuthenticationMode?: AuthenticationMode; UserName: Value; AccessString?: Value; Tags?: List; } export default class User extends ResourceBase { static AuthenticationMode: typeof AuthenticationMode; constructor(properties: UserProperties); }