import { UserService, UserRoleService, UserFilterService } from "./user.service"; export declare class UserController { protected service: UserService; constructor(service: UserService); profile(params: any): Promise; updateProfile(params: any, data: any): Promise; updateLastLoginDate(params: any): Promise; login(data: any): Promise; assignDefaultRole(params: any): Promise; resetAuthenticator(data: any): Promise; checkPolicy(): Promise; sendActivateEmail(data: any): Promise; resendActivateEmail(data: any): Promise; newPassword(id: string, body: any): Promise; changePassword(body: any): Promise; changePasswordExpired(body: any): Promise; forgotPassword(id: string, body: any): Promise; authorizeUnlockSystem(body: any): Promise; } export declare class UserRoleController { protected service: UserRoleService; constructor(service: UserRoleService); refresh(query: any): Promise; migrate(): Promise; reload_system(): Promise; update_permissions(data: any): Promise; updateLayout(): Promise; getRoleOptions(): Promise; } export declare class UserFilterController { protected service: UserFilterService; constructor(service: UserFilterService); getListFilter(): Promise; }