import { ICommandHandler } from '@nestjs/cqrs'; import { IAuthResponse } from '@metad/contracts'; import { AuthService } from '../../auth.service'; import { AuthLoginCommand } from '../auth.login.command'; export declare class AuthLoginHandler implements ICommandHandler { private readonly authService; constructor(authService: AuthService); execute(command: AuthLoginCommand): Promise; }