export declare function computeSummaryTotal(history: FdoInventoryAdjustment[], sku?: FdoInventorySku): Record<"RECEIVE" | "REQUEST" | "SALES" | "RETURN" | "LOSE" | "THEFT" | "DAMAGE" | "EXTRA" | "PURCHASE" | "CONVERT" | "CLOSING" | "USAGE" | "WASTAGE", { amount: number; precision: number; }> | Record<"RECEIVE" | "REQUEST" | "SALES" | "RETURN" | "LOSE" | "THEFT" | "DAMAGE" | "EXTRA" | "PURCHASE" | "CONVERT" | "CLOSING" | "USAGE" | "WASTAGE", string>; export declare function totalSalesHistory(history: FdoInventoryAdjustment[], sku?: FdoInventorySku): string | null;