export declare const enum ContextType { LSB6 = 0,// least significant 6 bits of last byte MSB6 = 1,// most significant 6 bits of last byte UTF8 = 2,// tuned for UTF8-encoded text SIGNED = 3 } export declare const CONTEXT_LOOKUP_TABLE: Uint8Array; export declare function getContextLut(mode: ContextType): Uint8Array; export declare function getContext(p1: number, p2: number, lut: Uint8Array): number; export declare function getContextInline(p1: number, p2: number, mode: ContextType): number; export declare function chooseContextMode(data: Uint8Array, start: number, length: number): ContextType; export declare const NUM_LITERAL_CONTEXTS = 64; export declare const NUM_DISTANCE_CONTEXTS = 4; //# sourceMappingURL=context.d.ts.map