/** * Decompress a single zstd frame. */ import type { DecoderDictionaryContext } from '../dictionary/decoderDictionary.js'; import type { FrameHeader } from '../frame/frameHeader.js'; import type { DecodeTrace } from './debugTrace.js'; import { type DecoderReuseBag } from './reconstruct.js'; export declare function decompressFrame(data: Uint8Array, offset: number, header: FrameHeader, dictionary?: DecoderDictionaryContext | null, maxSize?: number, validateChecksum?: boolean, reuseContext?: DecoderReuseBag, debugTrace?: DecodeTrace): { output: Uint8Array; bytesConsumed: number; };