import React from 'react'; interface EPCheckoutFormProps { cartId: string; apiBaseUrl?: string; onComplete?: (order: any) => void; onError?: (error: Error) => void; className?: string; style?: React.CSSProperties; } export declare function EPCheckoutForm({ cartId, apiBaseUrl, onComplete, onError, className, style }: EPCheckoutFormProps): React.JSX.Element; export default EPCheckoutForm;