export declare function TotalCalculations(items?: any[], ops?: any[], isTaxable?: boolean, taxCodes?: any[], Adjust?: number): any; /** * Enhanced version with decimal places control */ export declare function TotalCalculationsWithDecimals(items: any[] | undefined, ops: any[] | undefined, isTaxable: boolean | undefined, taxCodes: any[] | undefined, Adjust: number, decimalPlaces?: number): any; export declare function CalculateTaxSummary(items: any[], taxCodes: any[]): unknown[];