/// import { SOCKS5AuthenticationMethod } from '../../constants/socks5-authentication-method'; export declare class SOCKS5GreetingRequest { version: number; authenticationMethod: SOCKS5AuthenticationMethod; constructor(version: number, authenticationMethod: SOCKS5AuthenticationMethod); static fromBuffer(buffer: Buffer): SOCKS5GreetingRequest; }