import { IAuthentication } from '../interfaces/Authentication.js'; import { ILogger } from '../interfaces/Logger.js'; interface IHTTPAuthOptions { url: string; } export declare class HTTPAuth implements IAuthentication { private url; private logger; constructor(config: IHTTPAuthOptions, logger: ILogger); authenticate(username: string, password: string): Promise; } export {};