import type { FlatCliOptions } from '../../../types/types-cli-options.js'; import { type FlatEvolveOptions } from '../../../types/types-options.js'; import type { WebpackPlugin } from '../../../types/types-webpack.js'; /** * Creates an array of Webpack plugins for generating stats files. * * @param serveMode - A boolean indicating whether the application is running in serve mode. * @param evolveOptions - The options for the evolve package. * @param cliOptions - The options passed through the command-line interface. * @returns An array of Webpack plugins. */ export declare const createStatsWebpackPlugins: (serveMode: boolean, evolveOptions: FlatEvolveOptions, cliOptions?: FlatCliOptions) => WebpackPlugin[];