/** * Core orchestrator: prompt in → optimized prompt out. * Wires detector + heuristics + techniques into a single optimize() function. * * Unlike a simple template appender, this actually decomposes the prompt, * extracts semantic parts, and reassembles them with proper structure. * The result is a substantive scaffold — not just boilerplate wrapped around the original. */ import type { OptimizeInput, OptimizeResult } from './types.js'; export declare function optimize(input: OptimizeInput): OptimizeResult;