/** * Pick the most likely emitted JavaScript file from a compile result's output * map. Tries common paths first, then falls back to the first `.js` entry. * Returns null when no `.js` was emitted. */ export declare function pickEmittedJS(output: Record, entryFile: string): string | null;