///
import { SOCKS5GreetingRequest } from './socks5-greeting-request';
import { ISOCKS5Response } from './socks5-response';
import { SOCKS5AuthenticationMethod } from './socks5-authentication-method';
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;
}