/********************************************************************
 * @author:      Kaven
 * @email:       kaven@wuwenkai.com
 * @website:     http://blog.kaven.xyz
 * @file:        [Kaven-Utils] /src/net/proxy/HttpProxyUser.ts
 * @create:      2022-04-12 13:15:31.858
 * @modify:      2024-11-01 10:48:07.312
 * @version:     5.4.5
 * @times:       24
 * @lines:       51
 * @copyright:   Copyright © 2022-2024 Kaven. All Rights Reserved.
 * @description: [description]
 * @license:     [license]
 ********************************************************************/
import { Socket } from "node:net";
import { HttpRequestParser } from "../http/HttpRequestParser.js";
export declare class HttpProxyUser {
    readonly StartDate: Date;
    readonly UserSocket: Socket;
    readonly User: string;
    constructor(userSocket: Socket);
    Parser?: HttpRequestParser;
    ServerSocket?: Socket;
    Server: string;
    Log(...args: unknown[]): void;
    Error(...args: unknown[]): void;
    Destroy(): void;
}
