import { UserDTO } from '../../../../../common/entities/UserDTO'; import { NetworkService } from '../../../model/network/network.service'; import { UserSettingsDTO } from '../../../../../common/entities/UserSettingsDTO'; export declare class UsersSettingsService { private networkService; constructor(networkService: NetworkService); createUser(user: UserDTO): Promise; getUsers(): Promise>; deleteUser(user: UserDTO): Promise; updateRole(user: UserDTO): Promise; updateSettings(userId: number, settings: UserSettingsDTO): Promise; }