export interface SupplierPaymentDialogProps { open: boolean; onOpenChange: (open: boolean) => void; onSuccess?: () => void; } export declare function SupplierPaymentDialog({ open, onOpenChange, onSuccess, }: SupplierPaymentDialogProps): import("react").JSX.Element;