import type { ContentScriptAsset, ProcessedAsset } from './assets.types.js'; /** * @remarks * {@link AssetProcessingService} cache and dev disk cache entries usually keep * only an output path. Dependency declarations still carry the metadata HTML and * page-browser graph assembly need (`groupedBundle`, attributes, roles), so cache * hits must be rehydrated from both sources rather than returned verbatim. */ export declare function materializeContentScriptAsset(dep: ContentScriptAsset, filepath: string): ProcessedAsset;