import { Page } from "@playwright/test"; import { NetworkConfig } from "../../../types"; export declare class HomePage { private readonly page; constructor(page: Page); addNetwork(network: NetworkConfig): Promise; addWithPrivateKey(privateKey: string, password: string): Promise; switchAccount(accountName: string): Promise; addNewAccount(accountName: string): Promise; }