import { type Page } from '@playwright/test'; import { defineWalletSetup } from '@synthetixio/synpress-cache'; import { type Anvil, type CreateAnvilOptions } from '@viem/anvil'; import { MetaMask } from '../MetaMask'; type MetaMaskFixtures = { _contextPath: string; metamask: MetaMask; extensionId: string; metamaskPage: Page; createAnvilNode: (options?: CreateAnvilOptions) => Promise<{ anvil: Anvil; rpcUrl: string; chainId: number; }>; connectToAnvil: () => Promise; deployToken: () => Promise; deployAndMintERC1155: () => Promise; }; export declare const metaMaskFixtures: (walletSetup: ReturnType, slowMo?: number) => import("@playwright/test").TestType; export {}; //# sourceMappingURL=metaMaskFixtures.d.ts.map