@deframe-sdk/components 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -2830,7 +2830,12 @@ interface OnchainWithdrawFormViewProps {
2830
2830
  }
2831
2831
  declare function OnchainWithdrawFormView({ selectedToken, onTokenClick, isProcessing, chainCount, selectedChain, onNetworkClick, formattedBalance, amount, onAmountChange, isAmountInputDisabled, onMaxClick, showMaxButton, formattedAmountUsd, destinationNetwork, destinationAddress, onDestinationAddressChange, txDetails, isBelowMinAmount, walletError, transferError, showWarning, warningLabel, isSubmitDisabled, onSubmit, submitLabel, onBack, labels, className, }: OnchainWithdrawFormViewProps): react_jsx_runtime.JSX.Element;
2832
2832
 
2833
- declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
2833
+ interface OnchainWithdrawFormSimpleViewProps extends OnchainWithdrawFormViewProps {
2834
+ activeTab?: 'crypto' | 'pix';
2835
+ cryptoHref?: string;
2836
+ pixHref?: string;
2837
+ }
2838
+ declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormSimpleViewProps>;
2834
2839
 
2835
2840
  interface ChainOption {
2836
2841
  chainId: number;
@@ -2937,6 +2942,205 @@ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI
2937
2942
 
2938
2943
  declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2939
2944
 
2945
+ interface KycLoadingViewProps {
2946
+ message?: string;
2947
+ }
2948
+ declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
2949
+
2950
+ interface KycRequiredViewProps {
2951
+ title: string;
2952
+ description: string;
2953
+ buttonLabel: string;
2954
+ onAction: () => void;
2955
+ }
2956
+ declare function KycRequiredView({ title, description, buttonLabel, onAction }: KycRequiredViewProps): react_jsx_runtime.JSX.Element;
2957
+
2958
+ interface MethodOption {
2959
+ icon: ReactNode;
2960
+ iconBgColor: string;
2961
+ label: string;
2962
+ onClick: () => void;
2963
+ }
2964
+ interface OffchainMethodSelectionViewProps {
2965
+ title: string;
2966
+ options: MethodOption[];
2967
+ bannerMessage?: string;
2968
+ arrowIcon?: ReactNode;
2969
+ }
2970
+ declare function OffchainMethodSelectionView({ title, options, bannerMessage, arrowIcon, }: OffchainMethodSelectionViewProps): react_jsx_runtime.JSX.Element;
2971
+
2972
+ interface OnrampFormViewProps {
2973
+ amount: string;
2974
+ onAmountChange: (value: string) => void;
2975
+ isLoadingQuote: boolean;
2976
+ summaryTitle: string;
2977
+ summaryItems: Array<{
2978
+ label: string;
2979
+ value: string;
2980
+ valueClassName?: string;
2981
+ labelClassName?: string;
2982
+ }>;
2983
+ isBelowMinAmount: boolean;
2984
+ minAmountFormatted: string;
2985
+ hasNoAmount: boolean;
2986
+ isProcessing: boolean;
2987
+ onSubmit: () => void;
2988
+ onBack: () => void;
2989
+ submitLabel: string;
2990
+ /** Flag icon displayed next to the input (e.g. Brazil flag). */
2991
+ flagIcon?: ReactNode;
2992
+ /** Override the back-arrow icon rendered inside the back button. */
2993
+ backIcon?: ReactNode;
2994
+ className?: string;
2995
+ }
2996
+ declare function OnrampFormView({ amount, onAmountChange, isLoadingQuote, summaryTitle, summaryItems, isBelowMinAmount, minAmountFormatted, hasNoAmount, isProcessing, onSubmit, onBack, submitLabel, flagIcon, backIcon, className, }: OnrampFormViewProps): react_jsx_runtime.JSX.Element;
2997
+
2998
+ interface OnrampFormSimpleViewProps extends OnrampFormViewProps {
2999
+ activeTab?: 'crypto' | 'pix';
3000
+ cryptoHref?: string;
3001
+ pixHref?: string;
3002
+ pixCode?: string | null;
3003
+ qrCodeElement?: ReactNode;
3004
+ remainingLabel?: string;
3005
+ isExpired?: boolean;
3006
+ copied?: boolean;
3007
+ onCopy?: () => void;
3008
+ onRegenerate?: () => void;
3009
+ isRegenerating?: boolean;
3010
+ onClose?: () => void;
3011
+ /** Error message displayed below the amount input. */
3012
+ error?: string | null;
3013
+ }
3014
+ declare const OnrampFormSimpleView: React__default.FC<OnrampFormSimpleViewProps>;
3015
+
3016
+ interface OnrampPixcodeViewProps {
3017
+ pixCode: string;
3018
+ summaryTitle: string;
3019
+ summaryItems: Array<{
3020
+ label: string;
3021
+ value: string;
3022
+ valueClassName?: string;
3023
+ labelClassName?: string;
3024
+ }>;
3025
+ isLoadingQuote: boolean;
3026
+ remainingLabel: string;
3027
+ isExpired: boolean;
3028
+ copied: boolean;
3029
+ isRegenerating: boolean;
3030
+ onCopy: () => void;
3031
+ onRegenerate: () => void;
3032
+ /** Slot for the QR code element (e.g. `<QRCode value={pixCode} size={200} />`). */
3033
+ qrCodeElement: ReactNode;
3034
+ className?: string;
3035
+ }
3036
+ declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
3037
+
3038
+ interface OnrampSuccessViewProps {
3039
+ amount?: string;
3040
+ summaryTitle?: string;
3041
+ summaryItems?: Array<{
3042
+ label: string;
3043
+ value: string;
3044
+ valueClassName?: string;
3045
+ labelClassName?: string;
3046
+ }>;
3047
+ onNewDeposit?: () => void;
3048
+ onGoToDashboard?: () => void;
3049
+ className?: string;
3050
+ }
3051
+ declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
3052
+
3053
+ declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
3054
+
3055
+ interface OfframpInputFormViewProps {
3056
+ brlaBalance: string;
3057
+ amount: string;
3058
+ onAmountChange: (value: string) => void;
3059
+ pixKey: string;
3060
+ onPixKeyChange: (value: string) => void;
3061
+ onMaxClick: () => void;
3062
+ showMaxButton: boolean;
3063
+ summaryTitle: string;
3064
+ summaryItems: Array<{
3065
+ label: string;
3066
+ value: string;
3067
+ valueClassName?: string;
3068
+ labelClassName?: string;
3069
+ }>;
3070
+ isLoadingQuote: boolean;
3071
+ amountWarningMessage: string | null;
3072
+ hasActiveWithdrawal: boolean;
3073
+ completedBanner: string | null;
3074
+ error: string | null;
3075
+ offrampError: string | null;
3076
+ submitLabel: string | ReactNode;
3077
+ submitDisabled: boolean;
3078
+ onSubmit: () => void;
3079
+ onBack: () => void;
3080
+ /** Custom icon for the back button. Defaults to an arrow-left SVG. */
3081
+ backIcon?: ReactNode;
3082
+ /** URL for the token icon displayed in the balance row. Defaults to '/brladigital_32.webp'. */
3083
+ tokenIconUrl?: string;
3084
+ /** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
3085
+ flagIconUrl?: string;
3086
+ className?: string;
3087
+ }
3088
+ declare function OfframpInputFormView({ brlaBalance, amount, onAmountChange, pixKey, onPixKeyChange, onMaxClick, showMaxButton, summaryTitle, summaryItems, isLoadingQuote, amountWarningMessage, hasActiveWithdrawal, completedBanner, error, offrampError, submitLabel, submitDisabled, onSubmit, onBack, backIcon, tokenIconUrl, flagIconUrl, className, }: OfframpInputFormViewProps): react_jsx_runtime.JSX.Element;
3089
+
3090
+ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
3091
+ activeTab?: 'crypto' | 'pix';
3092
+ cryptoHref?: string;
3093
+ pixHref?: string;
3094
+ onPercentageSelect?: (basisPoints: number) => void;
3095
+ maxLabel?: string;
3096
+ onClose?: () => void;
3097
+ }
3098
+ declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
3099
+
3100
+ interface OfframpProcessingViewProps {
3101
+ step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
3102
+ amount?: string;
3103
+ summaryTitle?: string;
3104
+ summaryItems?: Array<{
3105
+ label: string;
3106
+ value: string;
3107
+ valueClassName?: string;
3108
+ labelClassName?: string;
3109
+ }>;
3110
+ transferTxHash?: string;
3111
+ onClose?: () => void;
3112
+ /** Custom icon for the close button. Defaults to an X SVG. */
3113
+ closeIcon?: ReactNode;
3114
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3115
+ tokenIconUrl?: string;
3116
+ className?: string;
3117
+ }
3118
+ declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
3119
+
3120
+ declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
3121
+
3122
+ interface OfframpSuccessViewProps {
3123
+ amount?: string;
3124
+ feesFormatted?: string;
3125
+ transactionId?: string;
3126
+ transferTxHash?: string;
3127
+ date?: string;
3128
+ onClose?: () => void;
3129
+ onConfirm?: () => void;
3130
+ /** Custom icon for the close button. Defaults to an X SVG. */
3131
+ closeIcon?: ReactNode;
3132
+ /** Custom icon for the success hero. Defaults to an arrow-up SVG. */
3133
+ arrowUpIcon?: ReactNode;
3134
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3135
+ tokenIconUrl?: string;
3136
+ className?: string;
3137
+ }
3138
+ declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
3139
+
3140
+ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
3141
+
3142
+ declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
3143
+
2940
3144
  type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2941
3145
 
2942
3146
  interface DashboardStrategyItem {
@@ -3125,4 +3329,4 @@ interface DeframeTheme {
3125
3329
  colors?: DeframeThemeColors;
3126
3330
  }
3127
3331
 
3128
- export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, type NetworkOption, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
3332
+ export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, KycLoadingView, type KycLoadingViewProps, KycRequiredView, type KycRequiredViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, type MethodOption, Navbar, type NavbarProps, type NetworkOption, OffchainMethodSelectionView, type OffchainMethodSelectionViewProps, OfframpFailedSimpleView, OfframpInputFormSimpleView, type OfframpInputFormSimpleViewProps, OfframpInputFormView, type OfframpInputFormViewProps, OfframpProcessingSimpleView, OfframpProcessingView, type OfframpProcessingViewProps, OfframpSuccessSimpleView, OfframpSuccessView, type OfframpSuccessViewProps, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, type OnchainWithdrawFormSimpleViewProps, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, OnrampFormSimpleView, type OnrampFormSimpleViewProps, OnrampFormView, type OnrampFormViewProps, OnrampPixcodeView, type OnrampPixcodeViewProps, OnrampSuccessSimpleView, OnrampSuccessView, type OnrampSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
package/dist/index.d.ts CHANGED
@@ -2830,7 +2830,12 @@ interface OnchainWithdrawFormViewProps {
2830
2830
  }
2831
2831
  declare function OnchainWithdrawFormView({ selectedToken, onTokenClick, isProcessing, chainCount, selectedChain, onNetworkClick, formattedBalance, amount, onAmountChange, isAmountInputDisabled, onMaxClick, showMaxButton, formattedAmountUsd, destinationNetwork, destinationAddress, onDestinationAddressChange, txDetails, isBelowMinAmount, walletError, transferError, showWarning, warningLabel, isSubmitDisabled, onSubmit, submitLabel, onBack, labels, className, }: OnchainWithdrawFormViewProps): react_jsx_runtime.JSX.Element;
2832
2832
 
2833
- declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
2833
+ interface OnchainWithdrawFormSimpleViewProps extends OnchainWithdrawFormViewProps {
2834
+ activeTab?: 'crypto' | 'pix';
2835
+ cryptoHref?: string;
2836
+ pixHref?: string;
2837
+ }
2838
+ declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormSimpleViewProps>;
2834
2839
 
2835
2840
  interface ChainOption {
2836
2841
  chainId: number;
@@ -2937,6 +2942,205 @@ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI
2937
2942
 
2938
2943
  declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2939
2944
 
2945
+ interface KycLoadingViewProps {
2946
+ message?: string;
2947
+ }
2948
+ declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
2949
+
2950
+ interface KycRequiredViewProps {
2951
+ title: string;
2952
+ description: string;
2953
+ buttonLabel: string;
2954
+ onAction: () => void;
2955
+ }
2956
+ declare function KycRequiredView({ title, description, buttonLabel, onAction }: KycRequiredViewProps): react_jsx_runtime.JSX.Element;
2957
+
2958
+ interface MethodOption {
2959
+ icon: ReactNode;
2960
+ iconBgColor: string;
2961
+ label: string;
2962
+ onClick: () => void;
2963
+ }
2964
+ interface OffchainMethodSelectionViewProps {
2965
+ title: string;
2966
+ options: MethodOption[];
2967
+ bannerMessage?: string;
2968
+ arrowIcon?: ReactNode;
2969
+ }
2970
+ declare function OffchainMethodSelectionView({ title, options, bannerMessage, arrowIcon, }: OffchainMethodSelectionViewProps): react_jsx_runtime.JSX.Element;
2971
+
2972
+ interface OnrampFormViewProps {
2973
+ amount: string;
2974
+ onAmountChange: (value: string) => void;
2975
+ isLoadingQuote: boolean;
2976
+ summaryTitle: string;
2977
+ summaryItems: Array<{
2978
+ label: string;
2979
+ value: string;
2980
+ valueClassName?: string;
2981
+ labelClassName?: string;
2982
+ }>;
2983
+ isBelowMinAmount: boolean;
2984
+ minAmountFormatted: string;
2985
+ hasNoAmount: boolean;
2986
+ isProcessing: boolean;
2987
+ onSubmit: () => void;
2988
+ onBack: () => void;
2989
+ submitLabel: string;
2990
+ /** Flag icon displayed next to the input (e.g. Brazil flag). */
2991
+ flagIcon?: ReactNode;
2992
+ /** Override the back-arrow icon rendered inside the back button. */
2993
+ backIcon?: ReactNode;
2994
+ className?: string;
2995
+ }
2996
+ declare function OnrampFormView({ amount, onAmountChange, isLoadingQuote, summaryTitle, summaryItems, isBelowMinAmount, minAmountFormatted, hasNoAmount, isProcessing, onSubmit, onBack, submitLabel, flagIcon, backIcon, className, }: OnrampFormViewProps): react_jsx_runtime.JSX.Element;
2997
+
2998
+ interface OnrampFormSimpleViewProps extends OnrampFormViewProps {
2999
+ activeTab?: 'crypto' | 'pix';
3000
+ cryptoHref?: string;
3001
+ pixHref?: string;
3002
+ pixCode?: string | null;
3003
+ qrCodeElement?: ReactNode;
3004
+ remainingLabel?: string;
3005
+ isExpired?: boolean;
3006
+ copied?: boolean;
3007
+ onCopy?: () => void;
3008
+ onRegenerate?: () => void;
3009
+ isRegenerating?: boolean;
3010
+ onClose?: () => void;
3011
+ /** Error message displayed below the amount input. */
3012
+ error?: string | null;
3013
+ }
3014
+ declare const OnrampFormSimpleView: React__default.FC<OnrampFormSimpleViewProps>;
3015
+
3016
+ interface OnrampPixcodeViewProps {
3017
+ pixCode: string;
3018
+ summaryTitle: string;
3019
+ summaryItems: Array<{
3020
+ label: string;
3021
+ value: string;
3022
+ valueClassName?: string;
3023
+ labelClassName?: string;
3024
+ }>;
3025
+ isLoadingQuote: boolean;
3026
+ remainingLabel: string;
3027
+ isExpired: boolean;
3028
+ copied: boolean;
3029
+ isRegenerating: boolean;
3030
+ onCopy: () => void;
3031
+ onRegenerate: () => void;
3032
+ /** Slot for the QR code element (e.g. `<QRCode value={pixCode} size={200} />`). */
3033
+ qrCodeElement: ReactNode;
3034
+ className?: string;
3035
+ }
3036
+ declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
3037
+
3038
+ interface OnrampSuccessViewProps {
3039
+ amount?: string;
3040
+ summaryTitle?: string;
3041
+ summaryItems?: Array<{
3042
+ label: string;
3043
+ value: string;
3044
+ valueClassName?: string;
3045
+ labelClassName?: string;
3046
+ }>;
3047
+ onNewDeposit?: () => void;
3048
+ onGoToDashboard?: () => void;
3049
+ className?: string;
3050
+ }
3051
+ declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
3052
+
3053
+ declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
3054
+
3055
+ interface OfframpInputFormViewProps {
3056
+ brlaBalance: string;
3057
+ amount: string;
3058
+ onAmountChange: (value: string) => void;
3059
+ pixKey: string;
3060
+ onPixKeyChange: (value: string) => void;
3061
+ onMaxClick: () => void;
3062
+ showMaxButton: boolean;
3063
+ summaryTitle: string;
3064
+ summaryItems: Array<{
3065
+ label: string;
3066
+ value: string;
3067
+ valueClassName?: string;
3068
+ labelClassName?: string;
3069
+ }>;
3070
+ isLoadingQuote: boolean;
3071
+ amountWarningMessage: string | null;
3072
+ hasActiveWithdrawal: boolean;
3073
+ completedBanner: string | null;
3074
+ error: string | null;
3075
+ offrampError: string | null;
3076
+ submitLabel: string | ReactNode;
3077
+ submitDisabled: boolean;
3078
+ onSubmit: () => void;
3079
+ onBack: () => void;
3080
+ /** Custom icon for the back button. Defaults to an arrow-left SVG. */
3081
+ backIcon?: ReactNode;
3082
+ /** URL for the token icon displayed in the balance row. Defaults to '/brladigital_32.webp'. */
3083
+ tokenIconUrl?: string;
3084
+ /** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
3085
+ flagIconUrl?: string;
3086
+ className?: string;
3087
+ }
3088
+ declare function OfframpInputFormView({ brlaBalance, amount, onAmountChange, pixKey, onPixKeyChange, onMaxClick, showMaxButton, summaryTitle, summaryItems, isLoadingQuote, amountWarningMessage, hasActiveWithdrawal, completedBanner, error, offrampError, submitLabel, submitDisabled, onSubmit, onBack, backIcon, tokenIconUrl, flagIconUrl, className, }: OfframpInputFormViewProps): react_jsx_runtime.JSX.Element;
3089
+
3090
+ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
3091
+ activeTab?: 'crypto' | 'pix';
3092
+ cryptoHref?: string;
3093
+ pixHref?: string;
3094
+ onPercentageSelect?: (basisPoints: number) => void;
3095
+ maxLabel?: string;
3096
+ onClose?: () => void;
3097
+ }
3098
+ declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
3099
+
3100
+ interface OfframpProcessingViewProps {
3101
+ step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
3102
+ amount?: string;
3103
+ summaryTitle?: string;
3104
+ summaryItems?: Array<{
3105
+ label: string;
3106
+ value: string;
3107
+ valueClassName?: string;
3108
+ labelClassName?: string;
3109
+ }>;
3110
+ transferTxHash?: string;
3111
+ onClose?: () => void;
3112
+ /** Custom icon for the close button. Defaults to an X SVG. */
3113
+ closeIcon?: ReactNode;
3114
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3115
+ tokenIconUrl?: string;
3116
+ className?: string;
3117
+ }
3118
+ declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
3119
+
3120
+ declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
3121
+
3122
+ interface OfframpSuccessViewProps {
3123
+ amount?: string;
3124
+ feesFormatted?: string;
3125
+ transactionId?: string;
3126
+ transferTxHash?: string;
3127
+ date?: string;
3128
+ onClose?: () => void;
3129
+ onConfirm?: () => void;
3130
+ /** Custom icon for the close button. Defaults to an X SVG. */
3131
+ closeIcon?: ReactNode;
3132
+ /** Custom icon for the success hero. Defaults to an arrow-up SVG. */
3133
+ arrowUpIcon?: ReactNode;
3134
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3135
+ tokenIconUrl?: string;
3136
+ className?: string;
3137
+ }
3138
+ declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
3139
+
3140
+ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
3141
+
3142
+ declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
3143
+
2940
3144
  type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2941
3145
 
2942
3146
  interface DashboardStrategyItem {
@@ -3125,4 +3329,4 @@ interface DeframeTheme {
3125
3329
  colors?: DeframeThemeColors;
3126
3330
  }
3127
3331
 
3128
- export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, type NetworkOption, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
3332
+ export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, KycLoadingView, type KycLoadingViewProps, KycRequiredView, type KycRequiredViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, type MethodOption, Navbar, type NavbarProps, type NetworkOption, OffchainMethodSelectionView, type OffchainMethodSelectionViewProps, OfframpFailedSimpleView, OfframpInputFormSimpleView, type OfframpInputFormSimpleViewProps, OfframpInputFormView, type OfframpInputFormViewProps, OfframpProcessingSimpleView, OfframpProcessingView, type OfframpProcessingViewProps, OfframpSuccessSimpleView, OfframpSuccessView, type OfframpSuccessViewProps, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, type OnchainWithdrawFormSimpleViewProps, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, OnrampFormSimpleView, type OnrampFormSimpleViewProps, OnrampFormView, type OnrampFormViewProps, OnrampPixcodeView, type OnrampPixcodeViewProps, OnrampSuccessSimpleView, OnrampSuccessView, type OnrampSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };