@deframe-sdk/components 0.1.30 → 0.1.32

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
@@ -1706,92 +1706,6 @@ interface GroupedStrategyListViewProps {
1706
1706
  */
1707
1707
  declare const GroupedStrategyListView: React__default.FC<GroupedStrategyListViewProps>;
1708
1708
 
1709
- interface HistoryListViewItem {
1710
- id: string;
1711
- iconUrl: string;
1712
- iconAlt: string;
1713
- isDeposit: boolean;
1714
- isSwap: boolean;
1715
- title: string;
1716
- subtitle: string;
1717
- amountFormatted: string;
1718
- amountUsd?: string;
1719
- status?: 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
1720
- statusLabel?: string;
1721
- statusTitle?: string;
1722
- onClick: () => void;
1723
- }
1724
- interface HistoryListViewGroup {
1725
- dateLabel: string;
1726
- items: HistoryListViewItem[];
1727
- }
1728
- interface HistoryListViewProps {
1729
- groups: HistoryListViewGroup[];
1730
- showLoadMore: boolean;
1731
- onLoadMore: () => void;
1732
- loadMoreLabel: string;
1733
- itemClassName?: string;
1734
- itemVariant?: 'subtle' | 'raised';
1735
- }
1736
- /**
1737
- * History list view.
1738
- * Pure view — receives pre-grouped, pre-formatted history items.
1739
- */
1740
- declare const HistoryListView: React__default.FC<HistoryListViewProps>;
1741
-
1742
- interface ExploreStrategyViewItem {
1743
- id: string;
1744
- logoUrl: string;
1745
- title: string;
1746
- subtitle: string;
1747
- apyFormatted: string;
1748
- onClick: () => void;
1749
- }
1750
- interface EarnOverviewViewProps {
1751
- selectedTab: string;
1752
- onTabChange: (tab: string) => void;
1753
- labels: {
1754
- tabs: {
1755
- overview: string;
1756
- explore: string;
1757
- history: string;
1758
- };
1759
- };
1760
- overview: {
1761
- isLoading: boolean;
1762
- walletBalances: WalletBalanceItem[];
1763
- groupedStrategies: GroupedStrategyListViewProps;
1764
- };
1765
- explore: {
1766
- searchValue: string;
1767
- onSearchChange: (value: string) => void;
1768
- searchPlaceholder: string;
1769
- chipOptions: ChipOption[];
1770
- selectedCategory: string;
1771
- onCategorySelect: (value: string) => void;
1772
- strategies: ExploreStrategyViewItem[];
1773
- isLoading: boolean;
1774
- error: Error | null;
1775
- hasFilters: boolean;
1776
- loadingLabel: string;
1777
- errorLabel: string;
1778
- bestPerformanceLabel: string;
1779
- emptySearchTitle: string;
1780
- emptySearchDescription: string;
1781
- };
1782
- history: {
1783
- isLoading: boolean;
1784
- isEmpty: boolean;
1785
- groups: HistoryListViewGroup[];
1786
- showLoadMore: boolean;
1787
- onLoadMore: () => void;
1788
- loadMoreLabel: string;
1789
- emptyTitle: string;
1790
- emptyDescription: string;
1791
- };
1792
- }
1793
- declare const EarnOverviewView: React__default.FC<EarnOverviewViewProps>;
1794
-
1795
1709
  interface EarnInvestmentSummaryViewProps {
1796
1710
  overviewDescription: string;
1797
1711
  totalInvestedLabel: string;
@@ -1890,6 +1804,160 @@ interface EarnDesktopViewProps {
1890
1804
  */
1891
1805
  declare const EarnDesktopView: React__default.FC<EarnDesktopViewProps>;
1892
1806
 
1807
+ interface EarnStrategyInfo {
1808
+ id: string;
1809
+ assetName: string;
1810
+ network: string;
1811
+ logourl: string;
1812
+ }
1813
+ interface EarnSpotPosition {
1814
+ underlyingBalanceUSD: number;
1815
+ apy: number;
1816
+ profitInUSD: number;
1817
+ }
1818
+ interface EarnPosition {
1819
+ strategy: EarnStrategyInfo;
1820
+ spotPosition: EarnSpotPosition;
1821
+ }
1822
+ interface EarnPositionsData {
1823
+ positions: EarnPosition[];
1824
+ summary: {
1825
+ totalUnderlyingBalanceUSD: number;
1826
+ totalProfitInUSD: number;
1827
+ };
1828
+ }
1829
+ interface EarnStrategy {
1830
+ id: string;
1831
+ assetName: string;
1832
+ network: string;
1833
+ logourl: string;
1834
+ apy: number;
1835
+ apyFormatted: string;
1836
+ }
1837
+ interface EarnHistoryItem {
1838
+ id: string;
1839
+ type: string;
1840
+ createdAt: string;
1841
+ amounts?: {
1842
+ assetIn?: {
1843
+ token?: {
1844
+ symbol?: string;
1845
+ };
1846
+ amountInUSD?: string | null;
1847
+ amountHumanized?: string;
1848
+ } | null;
1849
+ };
1850
+ }
1851
+ interface EarnDesktopViewSimpleProps extends Partial<EarnDesktopViewProps> {
1852
+ /** Positions data — mirrors WalletPositionsResponse */
1853
+ positions?: EarnPositionsData;
1854
+ /** All available strategies — mirrors StrategyWithApy[] */
1855
+ strategies?: EarnStrategy[];
1856
+ /** Investment history items — mirrors HistoryItem[] */
1857
+ historyItems?: EarnHistoryItem[];
1858
+ /** Currency formatter — e.g. (1000) => "R$ 1.000,00" */
1859
+ formatCurrency?: (amount: number) => string;
1860
+ /** Locale for date formatting — e.g. "pt-BR" */
1861
+ locale?: string;
1862
+ /** Called when user clicks deposit on a strategy */
1863
+ onDeposit?: (strategyId: string) => void;
1864
+ /** Called when user clicks withdraw on a strategy */
1865
+ onWithdraw?: (strategyId: string) => void;
1866
+ /** Called when user clicks details on a strategy */
1867
+ onDetails?: (strategyId: string) => void;
1868
+ /** Called when user clicks a history entry */
1869
+ onHistoryDetail?: (historyItemId: string, isDeposit: boolean) => void;
1870
+ /** Called when user clicks the history button */
1871
+ onHistory?: () => void;
1872
+ }
1873
+ declare const EarnDesktopViewSimple: React__default.FC<EarnDesktopViewSimpleProps>;
1874
+
1875
+ interface HistoryListViewItem {
1876
+ id: string;
1877
+ iconUrl: string;
1878
+ iconAlt: string;
1879
+ isDeposit: boolean;
1880
+ isSwap: boolean;
1881
+ title: string;
1882
+ subtitle: string;
1883
+ amountFormatted: string;
1884
+ amountUsd?: string;
1885
+ status?: 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
1886
+ statusLabel?: string;
1887
+ statusTitle?: string;
1888
+ onClick: () => void;
1889
+ }
1890
+ interface HistoryListViewGroup {
1891
+ dateLabel: string;
1892
+ items: HistoryListViewItem[];
1893
+ }
1894
+ interface HistoryListViewProps {
1895
+ groups: HistoryListViewGroup[];
1896
+ showLoadMore: boolean;
1897
+ onLoadMore: () => void;
1898
+ loadMoreLabel: string;
1899
+ itemClassName?: string;
1900
+ itemVariant?: 'subtle' | 'raised';
1901
+ }
1902
+ /**
1903
+ * History list view.
1904
+ * Pure view — receives pre-grouped, pre-formatted history items.
1905
+ */
1906
+ declare const HistoryListView: React__default.FC<HistoryListViewProps>;
1907
+
1908
+ interface ExploreStrategyViewItem {
1909
+ id: string;
1910
+ logoUrl: string;
1911
+ title: string;
1912
+ subtitle: string;
1913
+ apyFormatted: string;
1914
+ onClick: () => void;
1915
+ }
1916
+ interface EarnOverviewViewProps {
1917
+ selectedTab: string;
1918
+ onTabChange: (tab: string) => void;
1919
+ labels: {
1920
+ tabs: {
1921
+ overview: string;
1922
+ explore: string;
1923
+ history: string;
1924
+ };
1925
+ };
1926
+ overview: {
1927
+ isLoading: boolean;
1928
+ walletBalances: WalletBalanceItem[];
1929
+ groupedStrategies: GroupedStrategyListViewProps;
1930
+ };
1931
+ explore: {
1932
+ searchValue: string;
1933
+ onSearchChange: (value: string) => void;
1934
+ searchPlaceholder: string;
1935
+ chipOptions: ChipOption[];
1936
+ selectedCategory: string;
1937
+ onCategorySelect: (value: string) => void;
1938
+ strategies: ExploreStrategyViewItem[];
1939
+ isLoading: boolean;
1940
+ error: Error | null;
1941
+ hasFilters: boolean;
1942
+ loadingLabel: string;
1943
+ errorLabel: string;
1944
+ bestPerformanceLabel: string;
1945
+ emptySearchTitle: string;
1946
+ emptySearchDescription: string;
1947
+ };
1948
+ history: {
1949
+ isLoading: boolean;
1950
+ isEmpty: boolean;
1951
+ groups: HistoryListViewGroup[];
1952
+ showLoadMore: boolean;
1953
+ onLoadMore: () => void;
1954
+ loadMoreLabel: string;
1955
+ emptyTitle: string;
1956
+ emptyDescription: string;
1957
+ };
1958
+ }
1959
+ declare const EarnOverviewView: React__default.FC<EarnOverviewViewProps>;
1960
+
1893
1961
  interface EarnInvestmentDetailsTransaction {
1894
1962
  id: string;
1895
1963
  action: string;
@@ -2580,21 +2648,15 @@ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI
2580
2648
 
2581
2649
  declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2582
2650
 
2583
- interface DashboardCardProps {
2584
- children: React__default.ReactNode;
2585
- className?: string;
2586
- }
2587
- declare const DashboardCard: React__default.FC<DashboardCardProps>;
2588
-
2589
- declare const DashboardTransactionsPlaceholder: React__default.FC;
2651
+ type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2590
2652
 
2591
- interface DashboardBalancesBreakdownProps {
2592
- isLoadingBalances: boolean;
2593
- formattedTokenPositions: string;
2594
- formattedEarnPositions: string;
2595
- layout?: 'vertical' | 'horizontal';
2653
+ interface DashboardStrategyItem {
2654
+ id: string;
2655
+ assetName: string;
2656
+ protocol: string;
2657
+ logoUrl: string;
2658
+ apyFormatted?: string;
2596
2659
  }
2597
- declare const DashboardBalancesBreakdown: React__default.FC<DashboardBalancesBreakdownProps>;
2598
2660
 
2599
2661
  interface DashboardTokenItem {
2600
2662
  id: string;
@@ -2612,6 +2674,22 @@ interface DashboardTokenItem {
2612
2674
  metadata?: Record<string, unknown>;
2613
2675
  }
2614
2676
 
2677
+ interface DashboardCardProps {
2678
+ children: React__default.ReactNode;
2679
+ className?: string;
2680
+ }
2681
+ declare const DashboardCard: React__default.FC<DashboardCardProps>;
2682
+
2683
+ declare const DashboardTransactionsPlaceholder: React__default.FC;
2684
+
2685
+ interface DashboardBalancesBreakdownProps {
2686
+ isLoadingBalances: boolean;
2687
+ formattedTokenPositions: string;
2688
+ formattedEarnPositions: string;
2689
+ layout?: 'vertical' | 'horizontal';
2690
+ }
2691
+ declare const DashboardBalancesBreakdown: React__default.FC<DashboardBalancesBreakdownProps>;
2692
+
2615
2693
  interface DashboardTokenListViewProps {
2616
2694
  tokens: DashboardTokenItem[];
2617
2695
  isLoading: boolean;
@@ -2621,14 +2699,6 @@ interface DashboardTokenListViewProps {
2621
2699
  }
2622
2700
  declare const DashboardTokenListView: React__default.FC<DashboardTokenListViewProps>;
2623
2701
 
2624
- interface DashboardStrategyItem {
2625
- id: string;
2626
- assetName: string;
2627
- protocol: string;
2628
- logoUrl: string;
2629
- apyFormatted?: string;
2630
- }
2631
-
2632
2702
  interface DashboardStrategiesListViewProps {
2633
2703
  strategies: DashboardStrategyItem[];
2634
2704
  isLoading: boolean;
@@ -2733,8 +2803,6 @@ declare const DashboardView: React__default.FC<DashboardViewProps>;
2733
2803
  type DashboardViewSimpleProps = Omit<DashboardViewProps, 'investmentOpportunities' | 'banner'>;
2734
2804
  declare const DashboardViewSimple: React__default.FC<DashboardViewSimpleProps>;
2735
2805
 
2736
- type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2737
-
2738
2806
  /**
2739
2807
  * Returns `true` when the given USD amount is below the dust threshold ($0.01).
2740
2808
  * Useful for hiding negligible token balances from lists and summaries.
@@ -2768,4 +2836,4 @@ interface DeframeTheme {
2768
2836
  colors?: DeframeThemeColors;
2769
2837
  }
2770
2838
 
2771
- 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, 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, 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, type InputFieldRegistration, type InputProps, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, 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 };
2839
+ 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, 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, type InputFieldRegistration, type InputProps, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, 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 };