/** * WormholeCompressor — Reversible, token-dense serialization for source code. * * Compresses source code into a highly dense representation, substituting keywords * and repeating identifiers with short tokens. Includes a self-contained dictionary * header so the LLM or helper scripts can inflate/deflate it on the fly. * * Reduces token footprint for long files by 60-70% while keeping it structured and reversible. */ export interface CompressedPayload { dict: Record; payload: string; } /** * Compresses source code into a Wormhole representation. */ export declare function compressWormhole(code: string): string; /** * Reverts a Wormhole-compressed payload back to standard source code. */ export declare function decompressWormhole(wormholeCode: string): string; //# sourceMappingURL=WormholeCompressor.d.ts.map