import React from "react"; import "./styles"; export default function OtpStep({ phoneLabel, authType, email, length, onConfirm, onResend, onChangeNumber, setToast, loading, tone, themeBackgroundColor, themeAccentColor, themeTextColor, ctaPrimaryColor, ctaPrimaryContrastColor, countryCode, }: { phoneLabel?: string | undefined; authType: any; email: any; length?: number | undefined; onConfirm: any; onResend: any; onChangeNumber: any; setToast: any; loading?: boolean | undefined; tone?: string | undefined; themeBackgroundColor: any; themeAccentColor: any; themeTextColor: any; ctaPrimaryColor: any; ctaPrimaryContrastColor: any; countryCode: any; }): React.JSX.Element;