/// import { SOCKS5AuthenticationMethod } from '../../constants/socks5-authentication-method'; import { SOCKS5GreetingRequest } from './greeting-request'; import { ISOCKS5Response } from '../../interfaces/socks5-response'; export declare class SOCKS5GreetingResponse implements ISOCKS5Response { version: number; authenticationMethod: SOCKS5AuthenticationMethod; constructor(version: number, authenticationMethod: SOCKS5AuthenticationMethod); static fromGreetingRequest(greetingRequest: SOCKS5GreetingRequest, authenticationMethod: SOCKS5AuthenticationMethod): SOCKS5GreetingResponse; toBuffer(): Buffer; toBytes(): Array; }