import React from 'react';
export interface CheckoutBoxProps {
    config?: {
        theme?: 'modern' | 'classic' | 'minimal';
        currency?: string;
        locale?: 'hr' | 'en' | 'de';
        showOrderSummary?: boolean;
        enableGuestCheckout?: boolean;
    };
    onSuccess?: (orderId: string) => void;
    onError?: (error: string) => void;
    onCancel?: () => void;
}
export declare const CheckoutBoxClient: React.FC<CheckoutBoxProps>;
export default CheckoutBoxClient;
