import { PageObject } from '../../../page';
import { Password } from './password';
/**
 *
 *
 * @export
 * @class SelectWallets
 * @extends {PageObject}
 */
export declare class SelectWallets extends PageObject {
    private activeWalletButton;
    private continueButton;
    /**
     * Creates an instance of SelectWallets.
     * @memberof SelectWallets
     */
    constructor();
    /**
     *
     *
     * @param {number} index
     * @return {*}  {Promise<void>}
     * @memberof SelectWallets
     */
    selectWallet(index: number): Promise<void>;
    /**
     *
     *
     * @return {*}  {Promise<Password>}
     * @memberof SelectWallets
     */
    continue(): Promise<Password>;
}
