import { BundleChunkInput, BundleContentAnalysis } from "./types.js"; //#region src/scan/analyzeBundleContent.d.ts /** * Analyze the locale weight of a page's JavaScript bundles. * * @param chunks - The fetched JavaScript chunks (main + lazy). * @param htmlContent - The page HTML, used to estimate rendered content size. * @param currentLocale - The locale currently rendered by the page. * @param totalPageSize - The total transferred bytes measured for the page. * @returns The aggregated {@link BundleContentAnalysis}. */ export declare const analyzeBundleContent: (chunks: BundleChunkInput[], htmlContent: string, currentLocale: string, totalPageSize: number) => BundleContentAnalysis; //#endregion //# sourceMappingURL=analyzeBundleContent.d.ts.map