@deframe-sdk/components 0.1.29 → 0.1.31

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;
@@ -2353,10 +2421,19 @@ interface OnchainDepositFormViewProps {
2353
2421
  depositInstructionSuffix: string;
2354
2422
  warnBannerTokenChain: string;
2355
2423
  };
2424
+ onClose?: () => void;
2425
+ onAddressCopy?: (address: string) => void;
2356
2426
  className?: string;
2357
2427
  }
2358
2428
  declare function OnchainDepositFormView({ selectedToken, onTokenClick, chainCount, selectedChain, onNetworkClick, isGenerating, showContent, depositAddress, showInfoBanner, selectedTokenName, selectedChainName, isSubmitDisabled, onSubmit, submitLabel, onBack, labels, className, }: OnchainDepositFormViewProps): react_jsx_runtime.JSX.Element;
2359
2429
 
2430
+ interface OnchainDepositFormSimpleViewProps extends OnchainDepositFormViewProps {
2431
+ activeTab?: 'crypto' | 'pix';
2432
+ cryptoHref?: string;
2433
+ pixHref?: string;
2434
+ }
2435
+ declare const OnchainDepositFormSimpleView: React__default.FC<OnchainDepositFormSimpleViewProps>;
2436
+
2360
2437
  interface OnchainDepositSuccessViewProps {
2361
2438
  tokenSymbol: string;
2362
2439
  tokenLogoURI: string | null;
@@ -2395,6 +2472,8 @@ declare function OnchainDepositSuccessView({ tokenSymbol, chainName, formattedAm
2395
2472
 
2396
2473
  declare function DepositSuccessIcon(): react_jsx_runtime.JSX.Element;
2397
2474
 
2475
+ declare const OnchainDepositSuccessSimpleView: React$1.FC<OnchainDepositSuccessViewProps>;
2476
+
2398
2477
  interface OnchainWithdrawFormViewProps {
2399
2478
  selectedToken: {
2400
2479
  symbol: string;
@@ -2456,9 +2535,14 @@ interface OnchainWithdrawFormViewProps {
2456
2535
  txDetailsReceiveLabel: string;
2457
2536
  };
2458
2537
  className?: string;
2538
+ onPercentageClick?: (basisPoints: number) => void;
2539
+ maxLabel?: string;
2540
+ onClose?: () => void;
2459
2541
  }
2460
2542
  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;
2461
2543
 
2544
+ declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
2545
+
2462
2546
  interface ChainOption {
2463
2547
  chainId: number;
2464
2548
  name: string;
@@ -2543,21 +2627,36 @@ declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formatte
2543
2627
 
2544
2628
  declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
2545
2629
 
2546
- interface DashboardCardProps {
2547
- children: React__default.ReactNode;
2630
+ interface OnchainWithdrawProcessingViewProps {
2631
+ onClose?: () => void;
2632
+ }
2633
+ declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
2634
+
2635
+ interface OnchainWithdrawSignatureWarningViewProps {
2636
+ tokenSymbol: string;
2637
+ tokenLogoURI?: string | null;
2638
+ formattedAmount: string;
2639
+ chainName: string;
2640
+ chainIconUrl?: string;
2641
+ destinationAddress: string;
2642
+ blockchainCost: string;
2643
+ onCancel: () => void;
2644
+ onTryAgain: () => void;
2548
2645
  className?: string;
2549
2646
  }
2550
- declare const DashboardCard: React__default.FC<DashboardCardProps>;
2647
+ declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
2551
2648
 
2552
- declare const DashboardTransactionsPlaceholder: React__default.FC;
2649
+ declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
2553
2650
 
2554
- interface DashboardBalancesBreakdownProps {
2555
- isLoadingBalances: boolean;
2556
- formattedTokenPositions: string;
2557
- formattedEarnPositions: string;
2558
- layout?: 'vertical' | 'horizontal';
2651
+ type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2652
+
2653
+ interface DashboardStrategyItem {
2654
+ id: string;
2655
+ assetName: string;
2656
+ protocol: string;
2657
+ logoUrl: string;
2658
+ apyFormatted?: string;
2559
2659
  }
2560
- declare const DashboardBalancesBreakdown: React__default.FC<DashboardBalancesBreakdownProps>;
2561
2660
 
2562
2661
  interface DashboardTokenItem {
2563
2662
  id: string;
@@ -2575,6 +2674,22 @@ interface DashboardTokenItem {
2575
2674
  metadata?: Record<string, unknown>;
2576
2675
  }
2577
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
+
2578
2693
  interface DashboardTokenListViewProps {
2579
2694
  tokens: DashboardTokenItem[];
2580
2695
  isLoading: boolean;
@@ -2584,14 +2699,6 @@ interface DashboardTokenListViewProps {
2584
2699
  }
2585
2700
  declare const DashboardTokenListView: React__default.FC<DashboardTokenListViewProps>;
2586
2701
 
2587
- interface DashboardStrategyItem {
2588
- id: string;
2589
- assetName: string;
2590
- protocol: string;
2591
- logoUrl: string;
2592
- apyFormatted?: string;
2593
- }
2594
-
2595
2702
  interface DashboardStrategiesListViewProps {
2596
2703
  strategies: DashboardStrategyItem[];
2597
2704
  isLoading: boolean;
@@ -2696,8 +2803,6 @@ declare const DashboardView: React__default.FC<DashboardViewProps>;
2696
2803
  type DashboardViewSimpleProps = Omit<DashboardViewProps, 'investmentOpportunities' | 'banner'>;
2697
2804
  declare const DashboardViewSimple: React__default.FC<DashboardViewSimpleProps>;
2698
2805
 
2699
- type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
2700
-
2701
2806
  /**
2702
2807
  * Returns `true` when the given USD amount is below the dust threshold ($0.01).
2703
2808
  * Useful for hiding negligible token balances from lists and summaries.
@@ -2731,4 +2836,4 @@ interface DeframeTheme {
2731
2836
  colors?: DeframeThemeColors;
2732
2837
  }
2733
2838
 
2734
- 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, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, 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 };