import { type FlatEvolveDevServerOptions } from '../../types/types-dev-server.js'; import type { EvolveEntryMap } from '../../types/types-entry-map.js'; import { type FlatEvolveOptions } from '../../types/types-options.js'; /** * Loads the watch options for rspack configuration. * * @param groupEntryMap - The map of entry. * @param evolveOptions - The options for the evolve process. * @param originalOptions - The original watch options to be merged with. * @returns The updated watch options for rspack configuration. */ export declare const loadRspackWatchOptions: (groupEntryMap: EvolveEntryMap, evolveOptions: FlatEvolveOptions, originalOptions?: FlatEvolveDevServerOptions["watchOptions"]) => FlatEvolveDevServerOptions["watchOptions"];