import { ServiceCredentials } from './user/ServiceCredentials';
import { SshStateEnum } from './user/SshStateEnum';
import { StateEnum } from './user/StateEnum';
import { StatusEnum } from './user/StatusEnum';
/** Hosting users */
export interface User {
    /** Home directory */
    home: string;
    /** Is this user primary */
    isPrimaryAccount: boolean;
    /** Login used to connect on FTP and SSH */
    login: string;
    /** Credentials to manage your webhosting */
    serviceManagementCredentials: ServiceCredentials;
    /** User ssh status */
    sshState: SshStateEnum;
    /** User state */
    state: StateEnum;
    /** The user status */
    status: StatusEnum;
    /** The task ID working on this user */
    taskId?: number;
}
//# sourceMappingURL=User.d.ts.map