import { type PaymentPricingCalculation, type IPaymentPricingSheet, type PricingSheetParams } from '../directors/index.ts'; export declare const PaymentPricingRowCategory: { readonly Item: "ITEM"; readonly Payment: "PAYMENT"; readonly Discount: "DISCOUNT"; readonly Tax: "TAX"; }; export type PaymentPricingRowCategory = (typeof PaymentPricingRowCategory)[keyof typeof PaymentPricingRowCategory]; export declare const PaymentPricingSheet: (params: PricingSheetParams) => IPaymentPricingSheet;