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