import { OnchainFixtures } from "../types"; import { NodeConfig } from "./types"; export declare class NodeFixturesBuilder { private config; constructor(config?: NodeConfig); /** * Creates a test fixture that manages a local Anvil node * The node will be started before the test and stopped after */ build(): import("@playwright/test").TestType; }