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