/********************************************************************
 * @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:      2023-12-07 10:59:05.563
 * @version:     5.4.0
 * @times:       6
 * @lines:       49
 * @copyright:   Copyright © 2022-2023 Kaven. All Rights Reserved.
 * @description: [description]
 * @license:     [license]
 ********************************************************************/
export declare class HttpHeader {
    constructor(name: string, value: string);
    Name: string;
    Value: string;
    ToString(): string;
    Parse(line: string): boolean;
}
