import { Page } from "@playwright/test";
export declare class OnboardingPage {
    private readonly page;
    constructor(page: Page);
    /**
     * Imports a wallet using a seed phrase and password
     * @param seedPhrase - The seed phrase to import
     * @param password - The password to set for the wallet
     */
    importWallet(seedPhrase: string, password: string): Promise<void>;
}
