/** Input shape accepted by {@link VitestRunner.run}. */ export interface VitestRunInput { readonly testFiles: readonly string[]; } /** Output shape returned by {@link VitestRunner.run}. */ export interface VitestRunOutput { readonly exitCode: number; readonly testFiles: readonly string[]; readonly stderrTail: string; } /** Runtime callable for the vitest-runner capsule. */ export declare const VitestRunner: { readonly run: (input: VitestRunInput) => Promise; }; export declare namespace VitestRunner { /** Input shape accepted by {@link VitestRunner.run}. */ type Input = VitestRunInput; /** Output shape returned by {@link VitestRunner.run}. */ type Output = VitestRunOutput; } //# sourceMappingURL=vitest-runner.d.ts.map