UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

19 lines (18 loc) 720 B
import type { TFunction } from 'i18next'; import React from 'react'; import type { Address } from 'viem'; import type { MergedMultiStepDirectExecution } from '../../../domains/checkoutNotifications'; interface DirectExecutionNotificationProps { directExecution: MergedMultiStepDirectExecution; onClose: (id: string) => void; onHelp: (depositAddress: Address) => void; } export declare const getNotificationProcessingConfig: ({ t, isSyntheticDE, }: { t: TFunction; isSyntheticDE: boolean; }) => { title: string; description: string; }; export declare const DirectExecutionNotification: ({ directExecution, onClose, onHelp, }: DirectExecutionNotificationProps) => React.JSX.Element; export {};