import { SOCKSProxyAuthenticationMethod } from './socks-proxy-authentication-method'; export declare class SOCKSProxyState { authenticationMethod: SOCKSProxyAuthenticationMethod; authenticationResponseSent: boolean; connectionResponseSent: boolean; destinationHostname: string; destinationPort: number; greetingResponseSent: boolean; constructor(authenticationMethod: SOCKSProxyAuthenticationMethod, authenticationResponseSent: boolean, connectionResponseSent: boolean, destinationHostname: string, destinationPort: number, greetingResponseSent: boolean); }