import type { ContentScriptAsset } from './assets.types.js'; /** * Resolves the script body to embed when a content script is marked inline. * * @remarks * `inline` means embed in HTML, not "use declaration source." When bundling has * already run, only the output file is valid browser script; `dep.content` may * still contain build-time import paths. Processor emission and cache * materialization must share this rule so they cannot drift. */ export declare function resolveInlineContentScriptBody(dep: Pick, filepath: string): string | undefined;