import { Page } from 'playwright-core'; import { WalletOptions } from '../../wallets'; export declare function getStarted(page: Page, { seed, password, }: WalletOptions): Promise; export declare const signin: () => Promise; export declare const lock: (page: Page) => () => Promise; export declare const unlock: (page: Page) => (password?: string) => Promise;