import type { SetupWebpackV5ProcessAssetsHookOptions } from './helpers.js';
import type { createWebpackSourceCandidateScanCache } from './source-candidate-cache.js';
export declare function refreshWebpackSourceCandidates(options: {
    compilerOptions: SetupWebpackV5ProcessAssetsHookOptions['options'];
    debug: SetupWebpackV5ProcessAssetsHookOptions['debug'];
    outputDir: string;
    runtimeState: SetupWebpackV5ProcessAssetsHookOptions['runtimeState'];
    scanCache: ReturnType<typeof createWebpackSourceCandidateScanCache>;
    watchChangedFiles: ReadonlySet<string>;
    watchMode: boolean;
}): Promise<import("./source-candidate-cache.js").WebpackSourceCandidateCacheRecord | undefined>;
