import type { DecompileResult, IRNode } from './types.js'; /** * Decompile an IR tree back to a human-readable text representation. * * Useful for debugging, diffing, and displaying IR to users. Expands style * shorthands and value aliases for readability. * * @param root - The root IRNode to decompile * @returns `{ code: string }` — the human-readable representation */ export declare function decompile(root: IRNode): DecompileResult;