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<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions & OnchainFixtures, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>;
}
