import type { Page } from "@playwright/test"; /** * Imports a wallet using a seed phrase and password * @param page - The Playwright page object * @param seedPhrase - The seed phrase to import * @param password - The password to set for the wallet */ export declare function importWallet(page: Page, seedPhrase: string, password: string): Promise;