/// import { PackingMethod } from './packingMethod'; export declare class HeaderEntry { static getSignatureEntry(): HeaderEntry; static getBoundaryEntry(): HeaderEntry; private _packingMethod; constructor(name: string, packingMethod: PackingMethod, originalSize: number, timestamp: number); readonly name: string; readonly packingMethod: PackingMethod; readonly originalSize: number; readonly timestamp: number; readonly reserved: number; contents: Buffer; dataSize: number; getSize(): number; __fallbackToUncompressed(): void; }