import type { Compiler, RspackPluginInstance } from '@rspack/core'; export interface RsdoctorAnalyzePluginOptions { output: string; timeout?: number; interval?: number; disableClientServer?: boolean; } export default class RsdoctorAnalyzePlugin implements RspackPluginInstance { private options; constructor(options: RsdoctorAnalyzePluginOptions); apply(compiler: Compiler): void; private waitForManifest; }