import { Page } from "@playwright/test"; import type { SupportedChain } from "../../types"; export declare class HomePage { private readonly page; constructor(page: Page); importPrivateKey(privateKey: string, password: string, chain?: SupportedChain, name?: string): Promise; switchAccount(accountName: string): Promise; addNewAccount(accountName: string, privateKey: string, chain: SupportedChain): Promise; enableTestMode(): Promise; }