import { Reporter } from "./reporters/reporter.js"; import { TestMode } from "../../types.js"; type ReporterName = "verbose" | "files" | "compact" | "silent"; type TestOptions = { watch: boolean; reporter: ReporterName; mode: TestMode; verbose: boolean; extraArgs: string[]; }; export declare function test(filter?: string, options?: Partial): Promise; export declare function testWithReporter(reporterName: ReporterName | Reporter | undefined, filter?: string, defaultMode?: TestMode, watch?: boolean, signal?: AbortSignal, extraArgs?: string[]): Promise; export {};