import { AuthService } from './auth.service';
export declare class AuthController {
    private readonly authService;
    constructor(authService: AuthService);
    register(email: string, username: string, password: string): Promise<{
        user: import("../users/entities/user.entity").User;
        token: string;
    }>;
    login(email: string, password: string): Promise<{
        user: import("../users/entities/user.entity").User;
        token: string;
    }>;
}
