@swype-org/react-sdk 0.2.297 → 0.2.303

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.cts CHANGED
@@ -367,6 +367,7 @@ interface ThemeTokens {
367
367
  accent: string;
368
368
  accentHover: string;
369
369
  accentText: string;
370
+ highlight: string;
370
371
  success: string;
371
372
  successBg: string;
372
373
  error: string;
@@ -1718,7 +1719,8 @@ declare function ScreenHeader({ title, right, onBack, left, badge, onLogout, cen
1718
1719
  declare function PoweredByFooter(): react_jsx_runtime.JSX.Element;
1719
1720
 
1720
1721
  interface PrimaryButtonProps {
1721
- children: ReactNode;
1722
+ /** Button label. Optional only when `spinnerOnly` is set (no label is shown). */
1723
+ children?: ReactNode;
1722
1724
  onClick?: (event: MouseEvent<HTMLButtonElement | HTMLAnchorElement>) => void;
1723
1725
  href?: string;
1724
1726
  target?: HTMLAttributeAnchorTarget;
@@ -1735,8 +1737,15 @@ interface PrimaryButtonProps {
1735
1737
  progressText?: string;
1736
1738
  /** When true, the fill bar pulses to signal the user needs to take action (e.g. confirm in wallet). */
1737
1739
  progressPaused?: boolean;
1740
+ /**
1741
+ * Renders the pill as a non-interactive waiting state: the black pill with a
1742
+ * single centered spinner and no label. For surfaces where the user is
1743
+ * blocked on an external action (e.g. signing in their wallet) and there is
1744
+ * nothing to click.
1745
+ */
1746
+ spinnerOnly?: boolean;
1738
1747
  }
1739
- declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
1748
+ declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, spinnerOnly, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
1740
1749
 
1741
1750
  interface OutlineButtonProps {
1742
1751
  children: ReactNode;
@@ -1828,6 +1837,28 @@ interface LoginScreenProps {
1828
1837
  }
1829
1838
  declare function LoginScreen({ onLoginWithPasskey, onSignupWithPasskey, loading, error, onBack, onClose, merchantInitials, heroTitle, heroSubtitle, preferSignup, }: LoginScreenProps): react_jsx_runtime.JSX.Element;
1830
1839
 
1840
+ interface DepositOptionsScreenProps {
1841
+ /** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
1842
+ onToAddress: () => void;
1843
+ /**
1844
+ * Primary "Deposit with {biometric}" CTA. Routes to the login screen (wired to
1845
+ * handlers.onLogin) rather than prompting for a passkey directly, mirroring how
1846
+ * the connect-wallet entry point defers credential selection to LoginScreen.
1847
+ */
1848
+ onSignInWithBlink: () => void;
1849
+ /** Dismiss the widget. When set, renders a round (X) close button in the top-right. */
1850
+ onClose?: () => void;
1851
+ }
1852
+ /**
1853
+ * Pre-login entry screen shown when `enableFullWidget` is true. Mirrors the
1854
+ * Figma "Payment method" redesign (node 1391-82825): a Blink wordmark, a lime
1855
+ * mascot hero, a black "Deposit with {biometric}" CTA with a decorative cluster
1856
+ * of wallet marks and a "0% FEES" badge anchored to its lower-right, an OR
1857
+ * divider, and a recessed "Send Crypto Manually" row that routes to the
1858
+ * manual-transfer flow.
1859
+ */
1860
+ declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
1861
+
1831
1862
  interface BlinkErrorScreenProps {
1832
1863
  /** Heading text shown under the illustration. */
1833
1864
  title: string;
@@ -2240,13 +2271,18 @@ interface ApprovingInWalletScreenProps {
2240
2271
  step: 'approve' | 'sign' | 'spl';
2241
2272
  error?: string | null;
2242
2273
  onRetry?: () => void;
2274
+ /** Desktop-only escape hatch back to the previous screen. */
2275
+ onBack?: () => void;
2276
+ /** Desktop-only settings/logout action. */
2277
+ onLogout?: () => void;
2243
2278
  }
2244
2279
  /**
2245
2280
  * Activation surface rendered while the user signs the Permit2 / SPL
2246
2281
  * authorization in their wallet. NOT a payment screen — no money moves here.
2247
- * Frames the moment as a short checklist of the approvals being granted.
2282
+ * Shares chrome with LinkTokensScreen (header wordmark, h2 heading, recessed
2283
+ * card, footer lock banner) so the link → authorize steps read as one page.
2248
2284
  */
2249
- declare function ApprovingInWalletScreen({ tokenSymbol, chainName, step, error, onRetry, }: ApprovingInWalletScreenProps): react_jsx_runtime.JSX.Element;
2285
+ declare function ApprovingInWalletScreen({ tokenSymbol, chainName, step, error, onRetry, onBack, onLogout, }: ApprovingInWalletScreenProps): react_jsx_runtime.JSX.Element;
2250
2286
 
2251
2287
  interface ConfirmSignScreenProps {
2252
2288
  walletName: string | null;
@@ -2386,4 +2422,4 @@ declare function clearDebugEntries(): void;
2386
2422
  */
2387
2423
  declare function useBlinkDebugLog(): DebugEntry[];
2388
2424
 
2389
- export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
2425
+ export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
package/dist/index.d.ts CHANGED
@@ -367,6 +367,7 @@ interface ThemeTokens {
367
367
  accent: string;
368
368
  accentHover: string;
369
369
  accentText: string;
370
+ highlight: string;
370
371
  success: string;
371
372
  successBg: string;
372
373
  error: string;
@@ -1718,7 +1719,8 @@ declare function ScreenHeader({ title, right, onBack, left, badge, onLogout, cen
1718
1719
  declare function PoweredByFooter(): react_jsx_runtime.JSX.Element;
1719
1720
 
1720
1721
  interface PrimaryButtonProps {
1721
- children: ReactNode;
1722
+ /** Button label. Optional only when `spinnerOnly` is set (no label is shown). */
1723
+ children?: ReactNode;
1722
1724
  onClick?: (event: MouseEvent<HTMLButtonElement | HTMLAnchorElement>) => void;
1723
1725
  href?: string;
1724
1726
  target?: HTMLAttributeAnchorTarget;
@@ -1735,8 +1737,15 @@ interface PrimaryButtonProps {
1735
1737
  progressText?: string;
1736
1738
  /** When true, the fill bar pulses to signal the user needs to take action (e.g. confirm in wallet). */
1737
1739
  progressPaused?: boolean;
1740
+ /**
1741
+ * Renders the pill as a non-interactive waiting state: the black pill with a
1742
+ * single centered spinner and no label. For surfaces where the user is
1743
+ * blocked on an external action (e.g. signing in their wallet) and there is
1744
+ * nothing to click.
1745
+ */
1746
+ spinnerOnly?: boolean;
1738
1747
  }
1739
- declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
1748
+ declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, spinnerOnly, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
1740
1749
 
1741
1750
  interface OutlineButtonProps {
1742
1751
  children: ReactNode;
@@ -1828,6 +1837,28 @@ interface LoginScreenProps {
1828
1837
  }
1829
1838
  declare function LoginScreen({ onLoginWithPasskey, onSignupWithPasskey, loading, error, onBack, onClose, merchantInitials, heroTitle, heroSubtitle, preferSignup, }: LoginScreenProps): react_jsx_runtime.JSX.Element;
1830
1839
 
1840
+ interface DepositOptionsScreenProps {
1841
+ /** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
1842
+ onToAddress: () => void;
1843
+ /**
1844
+ * Primary "Deposit with {biometric}" CTA. Routes to the login screen (wired to
1845
+ * handlers.onLogin) rather than prompting for a passkey directly, mirroring how
1846
+ * the connect-wallet entry point defers credential selection to LoginScreen.
1847
+ */
1848
+ onSignInWithBlink: () => void;
1849
+ /** Dismiss the widget. When set, renders a round (X) close button in the top-right. */
1850
+ onClose?: () => void;
1851
+ }
1852
+ /**
1853
+ * Pre-login entry screen shown when `enableFullWidget` is true. Mirrors the
1854
+ * Figma "Payment method" redesign (node 1391-82825): a Blink wordmark, a lime
1855
+ * mascot hero, a black "Deposit with {biometric}" CTA with a decorative cluster
1856
+ * of wallet marks and a "0% FEES" badge anchored to its lower-right, an OR
1857
+ * divider, and a recessed "Send Crypto Manually" row that routes to the
1858
+ * manual-transfer flow.
1859
+ */
1860
+ declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
1861
+
1831
1862
  interface BlinkErrorScreenProps {
1832
1863
  /** Heading text shown under the illustration. */
1833
1864
  title: string;
@@ -2240,13 +2271,18 @@ interface ApprovingInWalletScreenProps {
2240
2271
  step: 'approve' | 'sign' | 'spl';
2241
2272
  error?: string | null;
2242
2273
  onRetry?: () => void;
2274
+ /** Desktop-only escape hatch back to the previous screen. */
2275
+ onBack?: () => void;
2276
+ /** Desktop-only settings/logout action. */
2277
+ onLogout?: () => void;
2243
2278
  }
2244
2279
  /**
2245
2280
  * Activation surface rendered while the user signs the Permit2 / SPL
2246
2281
  * authorization in their wallet. NOT a payment screen — no money moves here.
2247
- * Frames the moment as a short checklist of the approvals being granted.
2282
+ * Shares chrome with LinkTokensScreen (header wordmark, h2 heading, recessed
2283
+ * card, footer lock banner) so the link → authorize steps read as one page.
2248
2284
  */
2249
- declare function ApprovingInWalletScreen({ tokenSymbol, chainName, step, error, onRetry, }: ApprovingInWalletScreenProps): react_jsx_runtime.JSX.Element;
2285
+ declare function ApprovingInWalletScreen({ tokenSymbol, chainName, step, error, onRetry, onBack, onLogout, }: ApprovingInWalletScreenProps): react_jsx_runtime.JSX.Element;
2250
2286
 
2251
2287
  interface ConfirmSignScreenProps {
2252
2288
  walletName: string | null;
@@ -2386,4 +2422,4 @@ declare function clearDebugEntries(): void;
2386
2422
  */
2387
2423
  declare function useBlinkDebugLog(): DebugEntry[];
2388
2424
 
2389
- export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };
2425
+ export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useTransferPolling, useTransferSigning };