import type { Page } from "@playwright/test"; /** * Imports a wallet using a private key and password during onboarding * @param page - The Playwright page object * @param privateKey - The private key to import * @param password - The password to set for the wallet */ export declare function importPrivateKey(page: Page, privateKey: string, password: string): Promise;