import Connection from '../../helper/connection' /** * The Authenticator Class is responsible for resolving the authentication process */ declare class Authenticator { /** * Client preferred methods */ private readonly availableMethods /** * Corresponding connection */ private readonly connection constructor(connection: Connection) /** * Negotiates for authentication method with the server and handle corresponding * Authentication method * @returns void */ authenticate(): void } export default Authenticator