export interface PaymentDialogProps { open: boolean; onOpenChange: (open: boolean) => void; invoiceId: string; invoiceCurrency: string; onSuccess?: () => void; } export declare function PaymentDialog({ open, onOpenChange, invoiceId, invoiceCurrency, onSuccess, }: PaymentDialogProps): import("react").JSX.Element;