import { UserService } from '../user/user.service';
import { AuthService } from './auth.service';
import { AuthLoginDto } from './dto/auth-login.dto';
export declare class AuthController {
    private authService;
    private userService;
    constructor(authService: AuthService, userService: UserService);
    login(dto: AuthLoginDto): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
    me(userId: string): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
}
