@deframe-sdk/components 0.1.33 → 0.1.35

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
@@ -2306,6 +2306,7 @@ interface EarnTokenSelectorViewProps {
2306
2306
  chainDisabledTitle?: string;
2307
2307
  isNetworkDisabled?: boolean;
2308
2308
  currentNetworkSelected?: ChainItem | null;
2309
+ className?: string;
2309
2310
  }
2310
2311
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
2311
2312
 
@@ -2830,7 +2831,12 @@ interface OnchainWithdrawFormViewProps {
2830
2831
  }
2831
2832
  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
2833
 
2833
- declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
2834
+ interface OnchainWithdrawFormSimpleViewProps extends OnchainWithdrawFormViewProps {
2835
+ activeTab?: 'crypto' | 'pix';
2836
+ cryptoHref?: string;
2837
+ pixHref?: string;
2838
+ }
2839
+ declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormSimpleViewProps>;
2834
2840
 
2835
2841
  interface ChainOption {
2836
2842
  chainId: number;
@@ -2916,10 +2922,26 @@ declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formatte
2916
2922
 
2917
2923
  declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
2918
2924
 
2925
+ interface EarnFormSkeletonProps {
2926
+ headerTitle?: string;
2927
+ tokenSymbol?: string;
2928
+ tokenLogoURI?: string | null;
2929
+ chainLabel?: string;
2930
+ chainImage?: string;
2931
+ amount?: string;
2932
+ dollarAmount?: string;
2933
+ availableBalance?: string;
2934
+ cancelLabel?: string;
2935
+ submitLabel?: string;
2936
+ }
2937
+
2919
2938
  interface OnchainWithdrawProcessingViewProps {
2920
2939
  onClose?: () => void;
2921
2940
  }
2922
- declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
2941
+ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProcessingViewProps {
2942
+ formData?: EarnFormSkeletonProps;
2943
+ }
2944
+ declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
2923
2945
 
2924
2946
  interface OnchainWithdrawSignatureWarningViewProps {
2925
2947
  tokenSymbol: string;
@@ -2937,6 +2959,205 @@ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI
2937
2959
 
2938
2960
  declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2939
2961
 
2962
+ interface KycLoadingViewProps {
2963
+ message?: string;
2964
+ }
2965
+ declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
2966
+
2967
+ interface KycRequiredViewProps {
2968
+ title: string;
2969
+ description: string;
2970
+ buttonLabel: string;
2971
+ onAction: () => void;
2972
+ }
2973
+ declare function KycRequiredView({ title, description, buttonLabel, onAction }: KycRequiredViewProps): react_jsx_runtime.JSX.Element;
2974
+
2975
+ interface MethodOption {
2976
+ icon: ReactNode;
2977
+ iconBgColor: string;
2978
+ label: string;
2979
+ onClick: () => void;
2980
+ }
2981
+ interface OffchainMethodSelectionViewProps {
2982
+ title: string;
2983
+ options: MethodOption[];
2984
+ bannerMessage?: string;
2985
+ arrowIcon?: ReactNode;
2986
+ }
2987
+ declare function OffchainMethodSelectionView({ title, options, bannerMessage, arrowIcon, }: OffchainMethodSelectionViewProps): react_jsx_runtime.JSX.Element;
2988
+
2989
+ interface OnrampFormViewProps {
2990
+ amount: string;
2991
+ onAmountChange: (value: string) => void;
2992
+ isLoadingQuote: boolean;
2993
+ summaryTitle: string;
2994
+ summaryItems: Array<{
2995
+ label: string;
2996
+ value: string;
2997
+ valueClassName?: string;
2998
+ labelClassName?: string;
2999
+ }>;
3000
+ isBelowMinAmount: boolean;
3001
+ minAmountFormatted: string;
3002
+ hasNoAmount: boolean;
3003
+ isProcessing: boolean;
3004
+ onSubmit: () => void;
3005
+ onBack: () => void;
3006
+ submitLabel: string;
3007
+ /** Flag icon displayed next to the input (e.g. Brazil flag). */
3008
+ flagIcon?: ReactNode;
3009
+ /** Override the back-arrow icon rendered inside the back button. */
3010
+ backIcon?: ReactNode;
3011
+ className?: string;
3012
+ }
3013
+ declare function OnrampFormView({ amount, onAmountChange, isLoadingQuote, summaryTitle, summaryItems, isBelowMinAmount, minAmountFormatted, hasNoAmount, isProcessing, onSubmit, onBack, submitLabel, flagIcon, backIcon, className, }: OnrampFormViewProps): react_jsx_runtime.JSX.Element;
3014
+
3015
+ interface OnrampFormSimpleViewProps extends OnrampFormViewProps {
3016
+ activeTab?: 'crypto' | 'pix';
3017
+ cryptoHref?: string;
3018
+ pixHref?: string;
3019
+ pixCode?: string | null;
3020
+ qrCodeElement?: ReactNode;
3021
+ remainingLabel?: string;
3022
+ isExpired?: boolean;
3023
+ copied?: boolean;
3024
+ onCopy?: () => void;
3025
+ onRegenerate?: () => void;
3026
+ isRegenerating?: boolean;
3027
+ onClose?: () => void;
3028
+ /** Error message displayed below the amount input. */
3029
+ error?: string | null;
3030
+ }
3031
+ declare const OnrampFormSimpleView: React__default.FC<OnrampFormSimpleViewProps>;
3032
+
3033
+ interface OnrampPixcodeViewProps {
3034
+ pixCode: string;
3035
+ summaryTitle: string;
3036
+ summaryItems: Array<{
3037
+ label: string;
3038
+ value: string;
3039
+ valueClassName?: string;
3040
+ labelClassName?: string;
3041
+ }>;
3042
+ isLoadingQuote: boolean;
3043
+ remainingLabel: string;
3044
+ isExpired: boolean;
3045
+ copied: boolean;
3046
+ isRegenerating: boolean;
3047
+ onCopy: () => void;
3048
+ onRegenerate: () => void;
3049
+ /** Slot for the QR code element (e.g. `<QRCode value={pixCode} size={200} />`). */
3050
+ qrCodeElement: ReactNode;
3051
+ className?: string;
3052
+ }
3053
+ declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
3054
+
3055
+ interface OnrampSuccessViewProps {
3056
+ amount?: string;
3057
+ summaryTitle?: string;
3058
+ summaryItems?: Array<{
3059
+ label: string;
3060
+ value: string;
3061
+ valueClassName?: string;
3062
+ labelClassName?: string;
3063
+ }>;
3064
+ onNewDeposit?: () => void;
3065
+ onGoToDashboard?: () => void;
3066
+ className?: string;
3067
+ }
3068
+ declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
3069
+
3070
+ declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
3071
+
3072
+ interface OfframpInputFormViewProps {
3073
+ brlaBalance: string;
3074
+ amount: string;
3075
+ onAmountChange: (value: string) => void;
3076
+ pixKey: string;
3077
+ onPixKeyChange: (value: string) => void;
3078
+ onMaxClick: () => void;
3079
+ showMaxButton: boolean;
3080
+ summaryTitle: string;
3081
+ summaryItems: Array<{
3082
+ label: string;
3083
+ value: string;
3084
+ valueClassName?: string;
3085
+ labelClassName?: string;
3086
+ }>;
3087
+ isLoadingQuote: boolean;
3088
+ amountWarningMessage: string | null;
3089
+ hasActiveWithdrawal: boolean;
3090
+ completedBanner: string | null;
3091
+ error: string | null;
3092
+ offrampError: string | null;
3093
+ submitLabel: string | ReactNode;
3094
+ submitDisabled: boolean;
3095
+ onSubmit: () => void;
3096
+ onBack: () => void;
3097
+ /** Custom icon for the back button. Defaults to an arrow-left SVG. */
3098
+ backIcon?: ReactNode;
3099
+ /** URL for the token icon displayed in the balance row. Defaults to '/brladigital_32.webp'. */
3100
+ tokenIconUrl?: string;
3101
+ /** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
3102
+ flagIconUrl?: string;
3103
+ className?: string;
3104
+ }
3105
+ 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;
3106
+
3107
+ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
3108
+ activeTab?: 'crypto' | 'pix';
3109
+ cryptoHref?: string;
3110
+ pixHref?: string;
3111
+ onPercentageSelect?: (basisPoints: number) => void;
3112
+ maxLabel?: string;
3113
+ onClose?: () => void;
3114
+ }
3115
+ declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
3116
+
3117
+ interface OfframpProcessingViewProps {
3118
+ step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
3119
+ amount?: string;
3120
+ summaryTitle?: string;
3121
+ summaryItems?: Array<{
3122
+ label: string;
3123
+ value: string;
3124
+ valueClassName?: string;
3125
+ labelClassName?: string;
3126
+ }>;
3127
+ transferTxHash?: string;
3128
+ onClose?: () => void;
3129
+ /** Custom icon for the close button. Defaults to an X SVG. */
3130
+ closeIcon?: ReactNode;
3131
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3132
+ tokenIconUrl?: string;
3133
+ className?: string;
3134
+ }
3135
+ declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
3136
+
3137
+ declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
3138
+
3139
+ interface OfframpSuccessViewProps {
3140
+ amount?: string;
3141
+ feesFormatted?: string;
3142
+ transactionId?: string;
3143
+ transferTxHash?: string;
3144
+ date?: string;
3145
+ onClose?: () => void;
3146
+ onConfirm?: () => void;
3147
+ /** Custom icon for the close button. Defaults to an X SVG. */
3148
+ closeIcon?: ReactNode;
3149
+ /** Custom icon for the success hero. Defaults to an arrow-up SVG. */
3150
+ arrowUpIcon?: ReactNode;
3151
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3152
+ tokenIconUrl?: string;
3153
+ className?: string;
3154
+ }
3155
+ declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
3156
+
3157
+ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
3158
+
3159
+ declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
3160
+
2940
3161
  type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2941
3162
 
2942
3163
  interface DashboardStrategyItem {
@@ -3125,4 +3346,4 @@ interface DeframeTheme {
3125
3346
  colors?: DeframeThemeColors;
3126
3347
  }
3127
3348
 
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 };
3349
+ 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
@@ -2306,6 +2306,7 @@ interface EarnTokenSelectorViewProps {
2306
2306
  chainDisabledTitle?: string;
2307
2307
  isNetworkDisabled?: boolean;
2308
2308
  currentNetworkSelected?: ChainItem | null;
2309
+ className?: string;
2309
2310
  }
2310
2311
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
2311
2312
 
@@ -2830,7 +2831,12 @@ interface OnchainWithdrawFormViewProps {
2830
2831
  }
2831
2832
  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
2833
 
2833
- declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
2834
+ interface OnchainWithdrawFormSimpleViewProps extends OnchainWithdrawFormViewProps {
2835
+ activeTab?: 'crypto' | 'pix';
2836
+ cryptoHref?: string;
2837
+ pixHref?: string;
2838
+ }
2839
+ declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormSimpleViewProps>;
2834
2840
 
2835
2841
  interface ChainOption {
2836
2842
  chainId: number;
@@ -2916,10 +2922,26 @@ declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formatte
2916
2922
 
2917
2923
  declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
2918
2924
 
2925
+ interface EarnFormSkeletonProps {
2926
+ headerTitle?: string;
2927
+ tokenSymbol?: string;
2928
+ tokenLogoURI?: string | null;
2929
+ chainLabel?: string;
2930
+ chainImage?: string;
2931
+ amount?: string;
2932
+ dollarAmount?: string;
2933
+ availableBalance?: string;
2934
+ cancelLabel?: string;
2935
+ submitLabel?: string;
2936
+ }
2937
+
2919
2938
  interface OnchainWithdrawProcessingViewProps {
2920
2939
  onClose?: () => void;
2921
2940
  }
2922
- declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
2941
+ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProcessingViewProps {
2942
+ formData?: EarnFormSkeletonProps;
2943
+ }
2944
+ declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
2923
2945
 
2924
2946
  interface OnchainWithdrawSignatureWarningViewProps {
2925
2947
  tokenSymbol: string;
@@ -2937,6 +2959,205 @@ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI
2937
2959
 
2938
2960
  declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2939
2961
 
2962
+ interface KycLoadingViewProps {
2963
+ message?: string;
2964
+ }
2965
+ declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
2966
+
2967
+ interface KycRequiredViewProps {
2968
+ title: string;
2969
+ description: string;
2970
+ buttonLabel: string;
2971
+ onAction: () => void;
2972
+ }
2973
+ declare function KycRequiredView({ title, description, buttonLabel, onAction }: KycRequiredViewProps): react_jsx_runtime.JSX.Element;
2974
+
2975
+ interface MethodOption {
2976
+ icon: ReactNode;
2977
+ iconBgColor: string;
2978
+ label: string;
2979
+ onClick: () => void;
2980
+ }
2981
+ interface OffchainMethodSelectionViewProps {
2982
+ title: string;
2983
+ options: MethodOption[];
2984
+ bannerMessage?: string;
2985
+ arrowIcon?: ReactNode;
2986
+ }
2987
+ declare function OffchainMethodSelectionView({ title, options, bannerMessage, arrowIcon, }: OffchainMethodSelectionViewProps): react_jsx_runtime.JSX.Element;
2988
+
2989
+ interface OnrampFormViewProps {
2990
+ amount: string;
2991
+ onAmountChange: (value: string) => void;
2992
+ isLoadingQuote: boolean;
2993
+ summaryTitle: string;
2994
+ summaryItems: Array<{
2995
+ label: string;
2996
+ value: string;
2997
+ valueClassName?: string;
2998
+ labelClassName?: string;
2999
+ }>;
3000
+ isBelowMinAmount: boolean;
3001
+ minAmountFormatted: string;
3002
+ hasNoAmount: boolean;
3003
+ isProcessing: boolean;
3004
+ onSubmit: () => void;
3005
+ onBack: () => void;
3006
+ submitLabel: string;
3007
+ /** Flag icon displayed next to the input (e.g. Brazil flag). */
3008
+ flagIcon?: ReactNode;
3009
+ /** Override the back-arrow icon rendered inside the back button. */
3010
+ backIcon?: ReactNode;
3011
+ className?: string;
3012
+ }
3013
+ declare function OnrampFormView({ amount, onAmountChange, isLoadingQuote, summaryTitle, summaryItems, isBelowMinAmount, minAmountFormatted, hasNoAmount, isProcessing, onSubmit, onBack, submitLabel, flagIcon, backIcon, className, }: OnrampFormViewProps): react_jsx_runtime.JSX.Element;
3014
+
3015
+ interface OnrampFormSimpleViewProps extends OnrampFormViewProps {
3016
+ activeTab?: 'crypto' | 'pix';
3017
+ cryptoHref?: string;
3018
+ pixHref?: string;
3019
+ pixCode?: string | null;
3020
+ qrCodeElement?: ReactNode;
3021
+ remainingLabel?: string;
3022
+ isExpired?: boolean;
3023
+ copied?: boolean;
3024
+ onCopy?: () => void;
3025
+ onRegenerate?: () => void;
3026
+ isRegenerating?: boolean;
3027
+ onClose?: () => void;
3028
+ /** Error message displayed below the amount input. */
3029
+ error?: string | null;
3030
+ }
3031
+ declare const OnrampFormSimpleView: React__default.FC<OnrampFormSimpleViewProps>;
3032
+
3033
+ interface OnrampPixcodeViewProps {
3034
+ pixCode: string;
3035
+ summaryTitle: string;
3036
+ summaryItems: Array<{
3037
+ label: string;
3038
+ value: string;
3039
+ valueClassName?: string;
3040
+ labelClassName?: string;
3041
+ }>;
3042
+ isLoadingQuote: boolean;
3043
+ remainingLabel: string;
3044
+ isExpired: boolean;
3045
+ copied: boolean;
3046
+ isRegenerating: boolean;
3047
+ onCopy: () => void;
3048
+ onRegenerate: () => void;
3049
+ /** Slot for the QR code element (e.g. `<QRCode value={pixCode} size={200} />`). */
3050
+ qrCodeElement: ReactNode;
3051
+ className?: string;
3052
+ }
3053
+ declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
3054
+
3055
+ interface OnrampSuccessViewProps {
3056
+ amount?: string;
3057
+ summaryTitle?: string;
3058
+ summaryItems?: Array<{
3059
+ label: string;
3060
+ value: string;
3061
+ valueClassName?: string;
3062
+ labelClassName?: string;
3063
+ }>;
3064
+ onNewDeposit?: () => void;
3065
+ onGoToDashboard?: () => void;
3066
+ className?: string;
3067
+ }
3068
+ declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
3069
+
3070
+ declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
3071
+
3072
+ interface OfframpInputFormViewProps {
3073
+ brlaBalance: string;
3074
+ amount: string;
3075
+ onAmountChange: (value: string) => void;
3076
+ pixKey: string;
3077
+ onPixKeyChange: (value: string) => void;
3078
+ onMaxClick: () => void;
3079
+ showMaxButton: boolean;
3080
+ summaryTitle: string;
3081
+ summaryItems: Array<{
3082
+ label: string;
3083
+ value: string;
3084
+ valueClassName?: string;
3085
+ labelClassName?: string;
3086
+ }>;
3087
+ isLoadingQuote: boolean;
3088
+ amountWarningMessage: string | null;
3089
+ hasActiveWithdrawal: boolean;
3090
+ completedBanner: string | null;
3091
+ error: string | null;
3092
+ offrampError: string | null;
3093
+ submitLabel: string | ReactNode;
3094
+ submitDisabled: boolean;
3095
+ onSubmit: () => void;
3096
+ onBack: () => void;
3097
+ /** Custom icon for the back button. Defaults to an arrow-left SVG. */
3098
+ backIcon?: ReactNode;
3099
+ /** URL for the token icon displayed in the balance row. Defaults to '/brladigital_32.webp'. */
3100
+ tokenIconUrl?: string;
3101
+ /** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
3102
+ flagIconUrl?: string;
3103
+ className?: string;
3104
+ }
3105
+ 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;
3106
+
3107
+ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
3108
+ activeTab?: 'crypto' | 'pix';
3109
+ cryptoHref?: string;
3110
+ pixHref?: string;
3111
+ onPercentageSelect?: (basisPoints: number) => void;
3112
+ maxLabel?: string;
3113
+ onClose?: () => void;
3114
+ }
3115
+ declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
3116
+
3117
+ interface OfframpProcessingViewProps {
3118
+ step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
3119
+ amount?: string;
3120
+ summaryTitle?: string;
3121
+ summaryItems?: Array<{
3122
+ label: string;
3123
+ value: string;
3124
+ valueClassName?: string;
3125
+ labelClassName?: string;
3126
+ }>;
3127
+ transferTxHash?: string;
3128
+ onClose?: () => void;
3129
+ /** Custom icon for the close button. Defaults to an X SVG. */
3130
+ closeIcon?: ReactNode;
3131
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3132
+ tokenIconUrl?: string;
3133
+ className?: string;
3134
+ }
3135
+ declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
3136
+
3137
+ declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
3138
+
3139
+ interface OfframpSuccessViewProps {
3140
+ amount?: string;
3141
+ feesFormatted?: string;
3142
+ transactionId?: string;
3143
+ transferTxHash?: string;
3144
+ date?: string;
3145
+ onClose?: () => void;
3146
+ onConfirm?: () => void;
3147
+ /** Custom icon for the close button. Defaults to an X SVG. */
3148
+ closeIcon?: ReactNode;
3149
+ /** Custom icon for the success hero. Defaults to an arrow-up SVG. */
3150
+ arrowUpIcon?: ReactNode;
3151
+ /** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
3152
+ tokenIconUrl?: string;
3153
+ className?: string;
3154
+ }
3155
+ declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
3156
+
3157
+ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
3158
+
3159
+ declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
3160
+
2940
3161
  type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2941
3162
 
2942
3163
  interface DashboardStrategyItem {
@@ -3125,4 +3346,4 @@ interface DeframeTheme {
3125
3346
  colors?: DeframeThemeColors;
3126
3347
  }
3127
3348
 
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 };
3349
+ 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 };