import type { PaymentItem } from "./PaymentItem";
/**
 * Payment Prefill Data information.
 */
export type PaymentPrefillData = {
    /**
     * Gets or sets iD or reference to the payment to prefill.
     */
    reference?: string | null;
    /**
     * Gets or sets array of Payment Items.
     */
    payments?: Array<PaymentItem> | null;
};
