declare const __getProfit: (cost_price: number, selling_price: number) => string; declare const __profitPercentFromProfit: (profit: number, CP: number) => string; declare const __profitFromProfitPercent: (profitpercent: number, CP: number) => string; declare const __getCost_priceP: (Profit: number, SP: number) => string; declare const __getSelling_priceP: (Profit: number, CP: number) => string; export { __getCost_priceP, __getProfit, __getSelling_priceP, __profitFromProfitPercent, __profitPercentFromProfit };