/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { BundleComparison, BundleSummaries } from "./BundleBuddyTypes"; /** * Compares all the bundle summaries for a "baseline" and a "compare" bundle. */ export declare function compareBundles(baseline: BundleSummaries, compare: BundleSummaries): BundleComparison[]; /** * Checks if a bundle comparison contains no size changes * @param comparisons - bundle comparison */ export declare function bundlesContainNoChanges(comparisons: BundleComparison[]): boolean; //# sourceMappingURL=compareBundles.d.ts.map