import { type RawRstestPluginOptions } from '@rspack/binding'; export type RstestPluginArgument = Partial> | ((percentage: number, msg: string, ...args: string[]) => void) | undefined; export declare const RstestPlugin: { new (rstest: RawRstestPluginOptions): { name: string; _args: [rstest: RawRstestPluginOptions]; affectedHooks: keyof import("../index.js").CompilerHooks | undefined; raw(compiler: import("../index.js").Compiler): import("@rspack/binding").BuiltinPlugin; apply(compiler: import("../index.js").Compiler): void; }; };