import React from 'react'; import type { ElasticPathOrder } from '../types'; interface EPCheckoutConfirmationProps { order: ElasticPathOrder; onContinueShopping?: () => void; onPrintOrder?: () => void; className?: string; style?: React.CSSProperties; showOrderSummary?: boolean; customSuccessMessage?: string; showPrintButton?: boolean; showContinueButton?: boolean; } export declare function EPCheckoutConfirmation({ order, onContinueShopping, onPrintOrder, className, style, showOrderSummary, customSuccessMessage, showPrintButton, showContinueButton }: EPCheckoutConfirmationProps): React.JSX.Element; export default EPCheckoutConfirmation;