import { Header } from "./header";
export declare class EntityTag extends Header {
    private readonly _isWeak;
    constructor(value: string, isWeak?: boolean);
    get value(): string;
    rawValue(): string;
    get isWeak(): boolean;
    static fromString(header: string): EntityTag;
}
