import React from 'react';
import { HistoryContentPages } from '../../utils/checkoutHistory';
interface FunCheckoutHistoryContentProps {
    depositAddress: `0x${string}`;
    currentPage: HistoryContentPages;
    onHelp: () => void;
    onClose: (opt?: {
        isNewDeposit?: boolean;
    }) => void;
    onAnimationComplete?: (callback: () => void) => void;
    /** Element ID to be used to mount the CTA action bar */
    bottomBarId: string;
    isActiveCheckout: boolean;
}
export declare function FunCheckoutHistoryContent({ bottomBarId, currentPage, depositAddress, isActiveCheckout, onAnimationComplete, onClose, onHelp, }: FunCheckoutHistoryContentProps): React.JSX.Element;
export {};
