/// export declare class SOCKS5AuthenticationRequest { version: number; protected userName: string; protected password: string; constructor(version: number, userName: string, password: string); static fromBuffer(buffer: Buffer): SOCKS5AuthenticationRequest; }