/********************************************************************
 * @author:      Kaven
 * @email:       kaven@wuwenkai.com
 * @website:     http://blog.kaven.xyz
 * @file:        [Kaven-Utils] /src/net/http/HttpHeader.ts
 * @create:      2022-04-19 14:26:24.132
 * @modify:      2025-10-14 22:58:04.868
 * @version:     6.1.0
 * @times:       10
 * @lines:       50
 * @copyright:   Copyright © 2022-2025 Kaven. All Rights Reserved.
 * @description: [description]
 * @license:     [license]
 ********************************************************************/
import { ILoggingAgent } from "kaven-basic";
export declare class HttpHeader {
    Logger?: ILoggingAgent;
    constructor(name: string, value: string);
    Name: string;
    Value: string;
    ToString(): string;
    Parse(line: string): boolean;
}
