@unifold/ui-react 0.1.81 → 0.1.82

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
@@ -473,7 +473,9 @@ interface TransferCryptoDoubleInputProps {
473
473
  }
474
474
  declare function TransferCryptoDoubleInput({ userId, publishableKey, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, defaultSourceChainType, defaultSourceChainId, defaultSourceTokenAddress, defaultSourceSymbol, depositConfirmationMode, onExecutionsChange, onDepositSuccess, onDepositError, wallets: externalWallets, showExchangeRate, }: TransferCryptoDoubleInputProps): react_jsx_runtime.JSX.Element;
475
475
 
476
- type CardView = 'amount' | 'quotes' | 'review';
476
+ type CardOnrampView = 'amount' | 'quotes' | 'review';
477
+
478
+ type CardView = CardOnrampView;
477
479
  interface BuyWithCardProps {
478
480
  userId: string;
479
481
  publishableKey: string;
@@ -1544,6 +1546,9 @@ var common = {
1544
1546
  loading: "Loading...",
1545
1547
  search: "Search",
1546
1548
  close: "Close",
1549
+ noResults: "No matches found",
1550
+ selectCountry: "Select country",
1551
+ selectState: "Select state",
1547
1552
  review: "Review",
1548
1553
  tryAgain: "Try Again",
1549
1554
  somethingWentWrong: "Something went wrong",
@@ -1766,6 +1771,7 @@ var transferCrypto = {
1766
1771
  not_opted_in: "Please make sure you opt-in {{token_symbol}}({{chain_name}}) before receiving funds",
1767
1772
  insufficient_balance: "Recipient account does not meet the minimum balance requirement",
1768
1773
  account_not_found: "Recipient account does not exist on {{chain_name}}",
1774
+ destination_tag_required: "This {{chain_name}} address requires a memo tag. Please provide your memo tag as well, in the format address:memotag",
1769
1775
  validation_error: "Unable to verify recipient address on {{chain_name}}"
1770
1776
  },
1771
1777
  defaultError: "The recipient address cannot receive funds for the selected token"
@@ -2344,12 +2350,18 @@ var withdrawModal = {
2344
2350
  receiveChain: "Receive chain",
2345
2351
  recipientAddress: "Recipient address",
2346
2352
  recipientAddressPlaceholder: "Enter wallet address",
2353
+ recipientAddressPlaceholderXrpl: "Enter wallet address, or address:memotag",
2347
2354
  amount: "Amount",
2348
2355
  amountPlaceholder: "0.00",
2349
2356
  balance: "Balance",
2350
2357
  minimum: "min",
2351
2358
  withdraw: "Withdraw",
2352
2359
  invalidAddress: "Please enter a valid address",
2360
+ invalidXrplAddress: "Please enter a valid {{chain_name}} address. If your recipient requires a memo tag, please provide it as well, in the format address:memotag",
2361
+ memoTag: "Memo tag",
2362
+ memoTagPlaceholder: "e.g. 12345",
2363
+ memoTagRequiredHint: "This {{chain_name}} address requires a memo tag before it can receive funds",
2364
+ invalidMemoTag: "Memo tag must be a whole number between 0 and 4294967295",
2353
2365
  invalidAmount: "Please enter a valid amount",
2354
2366
  verifyingAddress: "Verifying address...",
2355
2367
  loading: "Loading...",
@@ -2445,6 +2457,9 @@ declare const i18n: {
2445
2457
  loading: string;
2446
2458
  search: string;
2447
2459
  close: string;
2460
+ noResults: string;
2461
+ selectCountry: string;
2462
+ selectState: string;
2448
2463
  review: string;
2449
2464
  tryAgain: string;
2450
2465
  somethingWentWrong: string;
@@ -2667,6 +2682,7 @@ declare const i18n: {
2667
2682
  not_opted_in: string;
2668
2683
  insufficient_balance: string;
2669
2684
  account_not_found: string;
2685
+ destination_tag_required: string;
2670
2686
  validation_error: string;
2671
2687
  };
2672
2688
  defaultError: string;
@@ -3245,12 +3261,18 @@ declare const i18n: {
3245
3261
  receiveChain: string;
3246
3262
  recipientAddress: string;
3247
3263
  recipientAddressPlaceholder: string;
3264
+ recipientAddressPlaceholderXrpl: string;
3248
3265
  amount: string;
3249
3266
  amountPlaceholder: string;
3250
3267
  balance: string;
3251
3268
  minimum: string;
3252
3269
  withdraw: string;
3253
3270
  invalidAddress: string;
3271
+ invalidXrplAddress: string;
3272
+ memoTag: string;
3273
+ memoTagPlaceholder: string;
3274
+ memoTagRequiredHint: string;
3275
+ invalidMemoTag: string;
3254
3276
  invalidAmount: string;
3255
3277
  verifyingAddress: string;
3256
3278
  loading: string;
@@ -3358,6 +3380,243 @@ declare function I18nProvider({ children, locale }: I18nProviderProps): react_js
3358
3380
  */
3359
3381
  declare function useI18n(): I18nContextValue;
3360
3382
 
3383
+ /**
3384
+ * Canonical country table for the SDK.
3385
+ *
3386
+ * One row per ISO 3166-1 assigned country or territory (249). Every other
3387
+ * country list in the SDK — region groups, residence pickers, nationality
3388
+ * selectors, dial-code pickers — is derived from this one, so a country's name,
3389
+ * code and calling code can't drift between flows.
3390
+ *
3391
+ * Codes are ISO 3166-1 alpha-2 only. Providers that store the three-letter
3392
+ * form convert at the API, so the client never maps between the two.
3393
+ *
3394
+ * Display names follow Stripe's EU KYC reference tables. Calling codes are
3395
+ * ITU E.164 country codes, without the leading `+`; the six uninhabited
3396
+ * territories have none.
3397
+ */
3398
+ interface Country {
3399
+ /** ISO 3166-1 alpha-2, e.g. `US`. */
3400
+ alpha2: string;
3401
+ /** English display name. */
3402
+ name: string;
3403
+ /** E.164 calling code without `+`, e.g. `1`. Absent for uninhabited territories. */
3404
+ dialCode?: string;
3405
+ }
3406
+ /** Every ISO 3166-1 country, in alpha-2 order. Use {@link ALL_COUNTRIES} for display. */
3407
+ declare const COUNTRIES: readonly Country[];
3408
+ /** Every country, sorted by display name for pickers. */
3409
+ declare const ALL_COUNTRIES: readonly Country[];
3410
+ /** Look a country up by ISO 3166-1 alpha-2, case-insensitively. */
3411
+ declare function findCountry(code: string | undefined | null): Country | undefined;
3412
+ /** Canonical alpha-2, or `undefined` when unknown. */
3413
+ declare function toAlpha2(code: string | undefined | null): string | undefined;
3414
+ /** Display name for a code, falling back to the code itself when unknown. */
3415
+ declare function countryName(code: string): string;
3416
+ /** Calling code for a country, without the leading `+`. */
3417
+ declare function dialCode(code: string): string | undefined;
3418
+
3419
+ /**
3420
+ * Region groups a KYC or payment flow can be scoped to.
3421
+ *
3422
+ * Groups nest where the everyday meaning nests: `ASIA` contains `SEA` and
3423
+ * `INDIA`, `EEA` contains `EU`, `LATAM` contains `CARIBBEAN`. Asking for a
3424
+ * parent returns its children too, so a flow that is "open across Asia" can say
3425
+ * `['ASIA']` rather than enumerating the pieces, while one that is only open in
3426
+ * South East Asia can say `['SEA']`.
3427
+ *
3428
+ * Membership is by ISO 3166-1 alpha-2. Dependent territories sit with the
3429
+ * region they are geographically in, not with their sovereign — French Guiana is
3430
+ * `LATAM`, not `EU`, because that is where its residents are.
3431
+ */
3432
+ type CountryGroup = 'US' | 'CANADA' | 'UK' | 'EU' | 'EEA' | 'EUROPE' | 'INDIA' | 'SEA' | 'ASIA' | 'MENA' | 'AFRICA' | 'CARIBBEAN' | 'LATAM' | 'OCEANIA';
3433
+ /** Alpha-2 members of each group, children included. */
3434
+ declare const COUNTRY_GROUPS: Record<CountryGroup, readonly string[]>;
3435
+ /** True when the country is in the group. Alpha-2, case-insensitive. */
3436
+ declare function isInGroup(code: string | undefined | null, group: CountryGroup): boolean;
3437
+ interface GetKycCountryListOptions {
3438
+ /** Regions to include. Omit for every supported country. */
3439
+ group?: readonly CountryGroup[];
3440
+ /** Individual countries to include on top of `group`, ISO 3166-1 alpha-2. */
3441
+ whitelisted?: readonly string[];
3442
+ /**
3443
+ * Countries to leave out, ISO 3166-1 alpha-2. Applied last, so it removes a
3444
+ * country that `group` or `whitelisted` would otherwise bring in — an explicit
3445
+ * exclusion outranks an inclusion.
3446
+ */
3447
+ blacklisted?: readonly string[];
3448
+ }
3449
+ /**
3450
+ * Build a flat, de-duplicated country list for a picker.
3451
+ *
3452
+ * `getKycCountryList()` is every supported country. `getKycCountryList({ group: ['EU'],
3453
+ * whitelisted: ['US'] })` is the EU plus the United States. Unknown codes in
3454
+ * `whitelisted` or `blacklisted` are ignored rather than thrown on, since the
3455
+ * lists are usually configuration.
3456
+ *
3457
+ * Sorted by display name.
3458
+ */
3459
+ declare function getKycCountryList(options?: GetKycCountryListOptions): Country[];
3460
+
3461
+ /** A US state or territory: USPS / ISO 3166-2:US code and display name. */
3462
+ interface UsState {
3463
+ code: string;
3464
+ name: string;
3465
+ }
3466
+ /**
3467
+ * USPS/ISO 3166-2:US codes for the `state` field of a US address.
3468
+ *
3469
+ * Both Stripe and our identity API want the two-letter code, not the name, and
3470
+ * reject anything else — so this list is the only way a state reaches the API,
3471
+ * replacing a free-text box that accepted any two characters.
3472
+ *
3473
+ * Includes DC and the five inhabited territories: their addresses are US
3474
+ * addresses with US ZIP codes, so someone living there has no other code to
3475
+ * give. Sorted by name, which is the order the picker shows them in.
3476
+ */
3477
+ declare const US_STATES: readonly UsState[];
3478
+ /** Display name for a state code, or the code itself if it isn't one we list. */
3479
+ declare function usStateName(code: string): string;
3480
+
3481
+ /** Same CDN convention as `/icons/currencies/svg/{code}.svg`. Native ratio, long side 28. */
3482
+ declare function countryFlagIconPath(alpha2: string): string;
3483
+ /** Raster of the same flag. Native ratio, long side 128. */
3484
+ declare function countryFlagPngPath(alpha2: string): string;
3485
+ /**
3486
+ * Flag emoji for a country, built from the two regional indicator symbols the
3487
+ * alpha-2 code maps to. Kept for callers that want a text-only flag; the picker
3488
+ * itself uses {@link CountryFlag} because Windows ships no flag glyphs and
3489
+ * renders these as a letter pair.
3490
+ */
3491
+ declare function countryFlag(code: string): string;
3492
+ /**
3493
+ * Flag image served from the asset CDN.
3494
+ *
3495
+ * An image rather than an emoji so the same artwork renders on every platform:
3496
+ * emoji flags depend on the system font, which on Windows has none. Each flag is
3497
+ * ~1.4 KB and `loading="lazy"`, so a long picker only fetches the rows on
3498
+ * screen, and the browser cache makes later opens free.
3499
+ *
3500
+ * Unknown or non-alpha-2 codes render nothing.
3501
+ */
3502
+ declare function CountryFlag({ code, assetCdnUrl, size, className, }: {
3503
+ code: string;
3504
+ assetCdnUrl?: string;
3505
+ /** Width in px. Height follows the flag's native ratio. */
3506
+ size?: number;
3507
+ className?: string;
3508
+ }): react_jsx_runtime.JSX.Element | null;
3509
+
3510
+ /** One row of the sheet: a country, or a subdivision such as a US state. */
3511
+ interface RegionOption {
3512
+ /**
3513
+ * Value handed back from `onSelect` — an ISO 3166-1 country code or an
3514
+ * ISO 3166-2 subdivision code, in whatever form the surrounding API speaks.
3515
+ */
3516
+ code: string;
3517
+ name: string;
3518
+ /**
3519
+ * Alpha-2 country code for the flag when `code` isn't one — a subdivision
3520
+ * whose parent flag should show. Defaults to `code`.
3521
+ */
3522
+ flagCode?: string;
3523
+ }
3524
+ /**
3525
+ * Marks the element a sheet should cover. The sheet portals into the nearest
3526
+ * ancestor carrying this attribute, so a form several components deep can raise
3527
+ * a picker over the whole modal body — footer included — without every layer in
3528
+ * between having to know about it. With no anchor in the tree the sheet renders
3529
+ * in place, against the nearest positioned ancestor.
3530
+ */
3531
+ declare const REGION_SHEET_ANCHOR_ATTR = "data-uf-sheet-anchor";
3532
+ /**
3533
+ * Match options against what someone typed.
3534
+ *
3535
+ * Deliberately literal rather than fuzzy: with a couple of hundred countries and
3536
+ * two-letter codes, fuzzy matching surfaces confusing near-misses. People search
3537
+ * a list like this by typing the start of a name, its ISO code, or — in the phone
3538
+ * picker — the calling code, with or without the leading `+`.
3539
+ *
3540
+ * Calling codes are only matched when the sheet is actually showing them.
3541
+ * Subdivision codes collide with country ones (`DE` is both Delaware and
3542
+ * Germany), so an unconditional dial lookup would let "49" surface Delaware.
3543
+ */
3544
+ declare function filterRegions(options: readonly RegionOption[], query: string, matchDialCode?: boolean): RegionOption[];
3545
+ interface RegionSelectorSheetProps {
3546
+ open: boolean;
3547
+ onOpenChange: (open: boolean) => void;
3548
+ options: readonly RegionOption[];
3549
+ /** Currently selected code, if any. */
3550
+ selectedCode: string;
3551
+ onSelect: (code: string) => void;
3552
+ title: string;
3553
+ /**
3554
+ * Show each country's E.164 calling code instead of its ISO code, turning the
3555
+ * same sheet into the phone country-code picker.
3556
+ */
3557
+ showDialCode?: boolean;
3558
+ /**
3559
+ * Off for lists whose codes aren't countries — a US state has no flag, and
3560
+ * the CDN would be asked for Germany's for Delaware.
3561
+ */
3562
+ showFlags?: boolean;
3563
+ /** Asset CDN override for the flag images, as passed to the modal. */
3564
+ assetCdnUrl?: string;
3565
+ }
3566
+ /**
3567
+ * Full-panel picker for a country or a subdivision, replacing a native
3568
+ * `<select>`.
3569
+ *
3570
+ * A native dropdown renders with the browser's own chrome, which ignores the
3571
+ * theme entirely — a light popup over a dark modal — and is painful with a list
3572
+ * this long. This follows the same shape as `TokenSelectorSheet`: a title row, a
3573
+ * search field, and a scrollable themed list.
3574
+ *
3575
+ * Positioned `absolute` against the nearest positioned ancestor, so the host
3576
+ * flow needs a `relative` wrapper around the area the sheet should cover —
3577
+ * `DepositModal` provides one around its body.
3578
+ */
3579
+ declare function RegionSelectorSheet({ open, onOpenChange, options, selectedCode, onSelect, title, showDialCode, showFlags, assetCdnUrl, }: RegionSelectorSheetProps): react_jsx_runtime.JSX.Element | null;
3580
+
3581
+ interface RegionPickerButtonProps {
3582
+ /** Text to show — the selected region, or a placeholder when nothing is set. */
3583
+ label: string;
3584
+ /** Dim the label when it stands in for an empty selection. */
3585
+ placeholder?: boolean;
3586
+ /** Country code of the current selection, to show its flag alongside the label. */
3587
+ flagCode?: string;
3588
+ /** Asset CDN override for the flag image, as passed to the modal. */
3589
+ assetCdnUrl?: string;
3590
+ onClick: () => void;
3591
+ /**
3592
+ * Size to the label rather than filling the row, for the calling-code control
3593
+ * that sits beside a phone input. Dial codes run from one to three digits, and
3594
+ * the flag, gaps and chevron around them take up most of the control, so a
3595
+ * width that suits `+1` ellipsises `+372`.
3596
+ */
3597
+ fitContent?: boolean;
3598
+ /**
3599
+ * Match the shorter inputs used by the KYC forms (`py-2.5`) rather than the
3600
+ * taller registration ones (`py-3`), so the control lines up with whatever
3601
+ * field sits beside it.
3602
+ */
3603
+ dense?: boolean;
3604
+ /**
3605
+ * There is only one possible value, so render the selection as a read-only
3606
+ * field: no chevron, nothing to click. A disabled button would still invite
3607
+ * the click and read as temporarily unavailable rather than absent.
3608
+ */
3609
+ locked?: boolean;
3610
+ /**
3611
+ * Overrides merged last, so a form whose text inputs are styled differently
3612
+ * from the theme's default input (the KYC form uses the card surface) can make
3613
+ * the trigger match the fields beside it.
3614
+ */
3615
+ style?: React$1.CSSProperties;
3616
+ }
3617
+ /** Trigger that opens a {@link RegionSelectorSheet}, styled as an input. */
3618
+ declare function RegionPickerButton({ label, placeholder, flagCode, assetCdnUrl, onClick, fitContent, dense, locked, style: styleOverride, }: RegionPickerButtonProps): react_jsx_runtime.JSX.Element;
3619
+
3361
3620
  /**
3362
3621
  * Result of the useAllowedCountry hook
3363
3622
  */
@@ -3912,4 +4171,4 @@ declare function cn(...inputs: ClassValue[]): string;
3912
4171
  */
3913
4172
  declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
3914
4173
 
3915
- export { type AllowedCountryResult, AnalyticsProvider, type AnalyticsProviderProps, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, BuyWithGooglePay, type BuyWithGooglePayProps, BuyWithWalletPay, type BuyWithWalletPayHandle, type BuyWithWalletPayProps, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, type DepositMenuLayout, type DepositMenuLayoutType, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, type DepositTab, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, EIP6963_BOOTSTRAP_SCRIPT, type EvmWalletProvider, type FontConfig, HYPERCORE_CHAIN_ID, type HeaderTokens, type I18nContextValue, I18nProvider, type I18nProviderProps, type I18nStrings, type InputTokens, type ListTokens, type LocaleCode, ManualDepositButton, type MobilePlatform, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, type ResolvedFonts, SUPPORTED_LOCALES, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaStandardAccount, type SolanaStandardWallet, type SolanaWalletProvider, type StoredWalletPaySession as StoredApplePaySession, type StoredWalletPaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, TransferQrCode, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, type UseTokenMetadataParams, WalletPayQrCheckout, type WalletPayQrCheckoutProps, type WalletPayQuote, type WalletPayView, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buildWalletPayQuote, buttonVariants, clearStoredWalletPaySession as clearStoredApplePaySession, clearStoredWalletPaySession, cn, colors, connectSolanaStandardWallet, defaultColors, detectBrowserLocale, detectBrowserWallet, detectConnectedBrowserWallet, findSolanaStandardWallet, formatCryptoAmount, formatFiat, getActiveLocale, getActiveStrings, getAuthorizedSolanaStandardAccounts, getColors, getSolanaStandardWallets, getStoredWalletPaySession as getStoredApplePaySession, getStoredWalletPaySession, getStrings, i18n, interpolate, isHypercoreChain, isOnrampTokenFresh, isSolanaWalletDetectedViaWalletStandard, mergeColors, normalizeLocale, platformSupportsWalletPay, qrErrorCorrectionLevel, requestEip6963Providers, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setActiveLocale, setStoredWalletPaySession as setStoredApplePaySession, setStoredWalletPaySession, signSolanaStandardTransaction, startBrowserWalletDiscovery, subscribeSolanaStandardAccountChanges, subscribeSolanaStandardWallets, truncateAddress, useAddressBalance, useAllowedCountry, useAnalytics, useDebounce, useDepositPolling, useDepositQuote, useI18n, useMobilePlatform, usePaymentIntent, usePublicIncident, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useTokenMetadata, useVerifyRecipientAddress, useWithdrawPolling };
4174
+ export { ALL_COUNTRIES, type AllowedCountryResult, AnalyticsProvider, type AnalyticsProviderProps, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, BuyWithGooglePay, type BuyWithGooglePayProps, BuyWithWalletPay, type BuyWithWalletPayHandle, type BuyWithWalletPayProps, COUNTRIES, COUNTRY_GROUPS, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, type Country, CountryFlag, type CountryGroup, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, type DepositMenuLayout, type DepositMenuLayoutType, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, type DepositTab, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, EIP6963_BOOTSTRAP_SCRIPT, type EvmWalletProvider, type FontConfig, type GetKycCountryListOptions, HYPERCORE_CHAIN_ID, type HeaderTokens, type I18nContextValue, I18nProvider, type I18nProviderProps, type I18nStrings, type InputTokens, type ListTokens, type LocaleCode, ManualDepositButton, type MobilePlatform, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, REGION_SHEET_ANCHOR_ATTR, type RegionOption, RegionPickerButton, type RegionPickerButtonProps, RegionSelectorSheet, type RegionSelectorSheetProps, type ResolvedFonts, SUPPORTED_LOCALES, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaStandardAccount, type SolanaStandardWallet, type SolanaWalletProvider, type StoredWalletPaySession as StoredApplePaySession, type StoredWalletPaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, TransferQrCode, US_STATES, type UsState, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, type UseTokenMetadataParams, WalletPayQrCheckout, type WalletPayQrCheckoutProps, type WalletPayQuote, type WalletPayView, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buildWalletPayQuote, buttonVariants, clearStoredWalletPaySession as clearStoredApplePaySession, clearStoredWalletPaySession, cn, colors, connectSolanaStandardWallet, countryFlag, countryFlagIconPath, countryFlagPngPath, countryName, defaultColors, detectBrowserLocale, detectBrowserWallet, detectConnectedBrowserWallet, dialCode, filterRegions, findCountry, findSolanaStandardWallet, formatCryptoAmount, formatFiat, getActiveLocale, getActiveStrings, getAuthorizedSolanaStandardAccounts, getColors, getKycCountryList, getSolanaStandardWallets, getStoredWalletPaySession as getStoredApplePaySession, getStoredWalletPaySession, getStrings, i18n, interpolate, isHypercoreChain, isInGroup, isOnrampTokenFresh, isSolanaWalletDetectedViaWalletStandard, mergeColors, normalizeLocale, platformSupportsWalletPay, qrErrorCorrectionLevel, requestEip6963Providers, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setActiveLocale, setStoredWalletPaySession as setStoredApplePaySession, setStoredWalletPaySession, signSolanaStandardTransaction, startBrowserWalletDiscovery, subscribeSolanaStandardAccountChanges, subscribeSolanaStandardWallets, toAlpha2, truncateAddress, usStateName, useAddressBalance, useAllowedCountry, useAnalytics, useDebounce, useDepositPolling, useDepositQuote, useI18n, useMobilePlatform, usePaymentIntent, usePublicIncident, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useTokenMetadata, useVerifyRecipientAddress, useWithdrawPolling };