import type { SupplierDetailHostSlotContext } from "@voyant-travel/distribution-react/suppliers/admin"; /** * Props of the supplier payment-policy widget: exactly the slot context the * supplier detail host hands to `supplier.details.payment-policy` widget * contributions (see `supplierDetailPaymentPolicySlot` in * `@voyant-travel/distribution-react/suppliers/admin`). */ export type SupplierPaymentPolicyWidgetProps = SupplierDetailHostSlotContext; /** * Finance-owned customer-payment-policy card for the supplier detail page, * delivered as a widget contribution on `supplier.details.payment-policy` * (packaged-admin RFC §4.7 cycle resolution: this package depends on * `@voyant-travel/distribution-react/suppliers/ui`, so the supplier host cannot import the * payment-policy form/preview directly — the contribution travels the other * way through the admin extension registry). */ export declare function SupplierPaymentPolicyWidget({ supplier, updateSupplier, isUpdating, }: SupplierPaymentPolicyWidgetProps): import("react").JSX.Element;