import { PageObject } from '../../../page';
import { CreatePassword } from './create-password';
/**
 *
 *
 * @export
 * @class ImportWithRecoveryPhrase
 * @extends {PageObject}
 */
export declare class ImportWithRecoveryPhrase extends PageObject {
    private get srpTextarea();
    private readonly srpInput;
    private get confirmButton();
    /**
     * Creates an instance of ImportWithRecoveryPhrase.
     * @memberof ImportWithRecoveryPhrase
     */
    constructor();
    /**
     *
     *
     * @param {string} srp
     * @return {*}  {Promise<void>}
     * @memberof ImportWithRecoveryPhrase
     */
    enterSRP(srp: string): Promise<void>;
    /**
     *
     *
     * @return {*}  {Promise<CreatePassword>}
     * @memberof ImportWithRecoveryPhrase
     */
    confirmSecretRecoveryPhrase(): Promise<CreatePassword>;
}
