import { QuoteResponseSummaryDiscounts } from './QuoteResponseSummaryDiscounts'; import { QuoteResponseSummaryRecurringSubtotal } from './QuoteResponseSummaryRecurringSubtotal'; export declare class QuoteResponseSummary { 'total'?: string; 'subtotal'?: string; 'oneTimeSubtotal'?: string; 'recurringSubtotal'?: Array; 'totalQty'?: string; 'discounts'?: { [key: string]: QuoteResponseSummaryDiscounts; }; 'taxes'?: any; 'fees'?: any; 'customFields'?: { [key: string]: string; }; 'totalDiscount'?: string; 'totalTax'?: string; 'totalFee'?: string; 'totalSavings'?: string; 'totalContractValue'?: string; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }