import type { NewTaskActionFunction } from "../../../types/tasks.js"; import type { TestRunResult } from "../../../types/test.js"; import type { SuiteResult } from "@nomicfoundation/edr"; interface TestActionArguments { testFiles: string[]; chainType: string; grep?: string; grepExclude?: string; noCompile: boolean; testSummaryIndex: number; testProfile?: string; } export interface SolidityTestRunResult extends TestRunResult { suiteResults: SuiteResult[]; } declare const runSolidityTests: NewTaskActionFunction; export default runSolidityTests; //# sourceMappingURL=task-action.d.ts.map