import type { NewTaskActionFunction } from "hardhat/types/tasks"; interface TestActionArguments { testFiles: string[]; only: boolean; grep?: string; noCompile: boolean; testSummaryIndex: number; } /** * Note that we are testing this manually for now as you can't run a node:test within a node:test */ declare const testWithHardhat: NewTaskActionFunction; export default testWithHardhat; //# sourceMappingURL=task-action.d.ts.map