///
import { ISOCKS5Response } from './socks5-response';
import { SOCKS5AuthenticationStatus } from './socks5-authentication-status';
import { SOCKS5AuthenticationRequest } from './socks5-authentication-request';
export declare class SOCKS5AuthenticationResponse implements ISOCKS5Response {
version: number;
authenticationStatus: SOCKS5AuthenticationStatus;
constructor(version: number, authenticationStatus: SOCKS5AuthenticationStatus);
static fromAuthenticationRequest(authenticationRequest: SOCKS5AuthenticationRequest, authenticationStatus: SOCKS5AuthenticationStatus): SOCKS5AuthenticationResponse;
toBuffer(): Buffer;
toBytes(): Array;
}