import { PageObject } from '../../../page';
import { ConfirmRecoveryPhrase } from './confirm-recovery-phrase';
/**
 *
 *
 * @export
 * @class ReviewRecoveryPhrase
 * @extends {PageObject}
 */
export declare class ReviewRecoveryPhrase extends PageObject {
    private get revealButton();
    private get nextButton();
    /**
     * Creates an instance of ReviewRecoveryPhrase.
     * @memberof ReviewRecoveryPhrase
     */
    constructor();
    /**
     *
     *
     * @return {*}  {Promise<void>}
     * @memberof ReviewRecoveryPhrase
     */
    revealSecretRecoveryPhrase(): Promise<void>;
    /**
     *
     *
     * @return {*}  {Promise<ConfirmRecoveryPhrase>}
     * @memberof ReviewRecoveryPhrase
     */
    next(): Promise<ConfirmRecoveryPhrase>;
}
