@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
14 lines (13 loc) • 658 B
TypeScript
import React from 'react';
import type { TextConfigSteps } from '../../components/TransactionStatus/TransactionStatus';
import type { FunkitCheckoutQuoteResult } from '../../domains/quote';
export interface PendingSuccessScreenProps {
bottomBarId: string;
onClose: () => void;
onAction: () => void;
customTextConfigSteps?: TextConfigSteps;
quote?: FunkitCheckoutQuoteResult | null;
isWithdrawal?: boolean;
hideYouReceive: boolean;
}
export declare const PendingSuccessScreen: ({ bottomBarId, onClose, onAction, customTextConfigSteps, quote, isWithdrawal, hideYouReceive, }: PendingSuccessScreenProps) => React.JSX.Element | null;