import type { AssetDefinition } from '../../services/assets/asset-processing-service/index.js'; /** * Returns whether the current integration should collapse eligible page assets into * page-owned bundle entries. */ export declare function shouldBundlePageDependencies(integrationName: string): boolean; /** * Rewrites eligible flat dependency declarations into page-owned stylesheet and script bundles. * * Only assets with the default attribute shape and without explicit packaging roles are * collapsed so integration-specific or lazy behavior keeps its existing ownership model. */ export declare function packagePageDependencies(dependencies: AssetDefinition[], integrationName: string): AssetDefinition[];