import React from 'react';
import { VerifyCodeScreenProps } from './types.js';
/**
 * Component that renders a screen that prompts a user to enter the confirmation code
 * that was sent to the email address that they used to register.
 *
 * @param {VerifyCodeScreenProps} props - props of Verify Code Screen Base component
 *
 * @category Component
 */
export declare const VerifyCodeScreenBase: React.FC<React.PropsWithChildren<VerifyCodeScreenProps>>;
