import type { PaymentDetailsBase } from './payment-details-base.js';
import type { PaymentItem } from './payment-item.js';
export interface PaymentDetailsInit extends PaymentDetailsBase {
    id?: string;
    total: PaymentItem;
}
//# sourceMappingURL=payment-details-init.d.ts.map