import { UsersService } from './users.service.js'; export declare class UsersController { private readonly usersService; constructor(usersService: UsersService); list(): Promise<{ success: boolean; data: { id: string; username: string; }[]; }>; create(body: { username: string; password: string; }): Promise<{ success: boolean; data: { id: string; username: string; }; }>; update(id: string, body: { username?: string; password?: string; }): Promise<{ success: boolean; data: { id: string; username: string; }; }>; delete(id: string): Promise<{ success: boolean; }>; }