export interface VerificationStatusProps { /** * The component key to check the status for, prefixed with any top-level namespaces * (e.g. when used within an edit grid). */ prefixedComponentKey: string; /** * Name of the form field to look up the current value from the Formik state. */ name: string; } /** * Display the verification status and interaction elements to start email verification. */ declare const VerificationStatus: React.FC; export default VerificationStatus;