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;
