/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { StatsCompilation } from "webpack"; import type { BundleBuddyConfig } from "../BundleBuddyTypes"; import { type BundleFileData } from "./getBundleFilePathsFromFolder"; /** * Returns a list of all the files relevant to bundle buddy from the given folder * @param bundleReportPath - The path to the folder containing the bundle report */ export declare function getBundlePathsFromFileSystem(bundleReportPath: string): Promise; /** * Gets and parses a BundleBuddyConfig file from the filesystem * @param path - the full path to the file in the filesystem */ export declare function getBundleBuddyConfigFromFileSystem(path: string): Promise; /** * Gets a decompressed webpack stats file from the filesystem * @param path - the full path to the file in the filesystem */ export declare function getStatsFileFromFileSystem(path: string): Promise; //# sourceMappingURL=FileSystemBundleFileProvider.d.ts.map