import type { Code, SourceEnhancers } from "../../CodeHighlighter/types.mjs";
/**
 * Async function to enhance parsed code variants and their extraFiles.
 * Applies sourceEnhancers to HAST nodes, using comments stored in the variant.
 */
export declare function enhanceCode(code: Code, sourceEnhancers: SourceEnhancers): Promise<Code>;