/// import { SOCKS5Command } from "./socks5-command"; import { SOCKS5AddressType } from "./socks5-address-type"; import { SOCKS5Status } from "./socks5-status"; export declare class SOCKS5ConnectionRequest { version: number; command: SOCKS5Command; addressType: SOCKS5AddressType; address: string; addressBytes: Array; port: number; portBytes: Array; constructor(version: number, command: SOCKS5Command, addressType: SOCKS5AddressType, address: string, addressBytes: Array, port: number, portBytes: Array); static fromBuffer(buffer: Buffer): Promise<{ result: SOCKS5ConnectionRequest; status: SOCKS5Status; }>; }