import { IAuthenticationRepositoryPort } from "../../ports/authentication/authentication-repository.port"; import { ArcaServiceName } from "../../types/service-name.types"; import { AccessTicket } from "../../../domain/entities/access-ticket.entity"; export declare class LoginUseCase { private readonly authenticationRepository; constructor(authenticationRepository: IAuthenticationRepositoryPort); execute(serviceName: ArcaServiceName): Promise; }