import { type AnalyzeServeOptions } from '../types/types-analyzer.js'; /** * Prepares and analyzes webpack bundle stats. * * @param statsPaths - An array of paths to the webpack bundle stats files. * @param options - Options for analyzing the webpack bundle stats. * @returns A promise that resolves to a boolean indicating whether the analysis was successful. */ export declare const prepareAnalyzer: (statsPaths: string[], options: AnalyzeServeOptions) => Promise;