import React from 'react';
import type { Address } from 'viem';
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
export type CheckoutCompleteState = CheckoutModalCommonState & {
    depositAddress: Address;
};
export type CheckoutCompleteNext = Record<string, never>;
export type ConfirmationStepNext = {
    depositAddress: Address;
};
export declare const CheckoutCompleteInfo: ModalStepInfo<FunCheckoutStep.CHECKOUT_COMPLETE>;
/** A checkout detail component to handle redirecting to the checkout history page */
export declare function CheckoutComplete({ modalState, onClose, onNext, onAnimationComplete, }: ModalStepComponentProps<FunCheckoutStep.CHECKOUT_COMPLETE>): React.JSX.Element;
