import React from 'react'; import type { ElasticPathOrder } from '../types'; interface EPPaymentFormProps { order: ElasticPathOrder; stripePublishableKey: string; apiBaseUrl?: string; onSuccess?: (order: ElasticPathOrder) => void; onError?: (error: Error) => void; className?: string; style?: React.CSSProperties; theme?: 'stripe' | 'night' | 'flat'; } export declare function EPPaymentForm({ order, stripePublishableKey, apiBaseUrl, onSuccess, onError, className, style, theme }: EPPaymentFormProps): React.JSX.Element; export default EPPaymentForm;