import { IAuthenticationRepositoryPort } from "../../ports/authentication/authentication-repository.port"; import { GetAuthParamsInput } from "../../dto/authentication"; import { WSAuthParam } from "../../types"; export declare class GetAuthParamsUseCase { private readonly authenticationRepository; constructor(authenticationRepository: IAuthenticationRepositoryPort); execute(input: GetAuthParamsInput): Promise; }