/** * Shows what percentage a value is of a total value, for example calculating what percentage of 20 is 5? (25%) * @param partialValue The partial value of the total number, that you want to know what its percentage of the total is. * @param totalValue The total value, that the partial value is a part of. */ export declare function calcWhatPercent(partialValue: number, totalValue: number): number; /** * Calculates what a X% of a total number is, for example calculating what is 20% of 100 * @param percent The percentage (%) you want to calculate. * @param valueToCalc The total number that you want to get the percentage of. */ export declare function calcPercentOfNum(percent: number, valueToCalc: number): number; /** * Reduces a number by a percentage of itself. * @param value, The number to be reduced. * @param percent The percent you want the value to be reduced by. */ export declare function reduceNumByPercent(value: number, percent: number): number; /** * Increases a number by a percentage of itself. * @param value, The number to be increased. * @param percent The percent you want the value to be increased by. */ export declare function increaseNumByPercent(value: number, percent: number): number; //# sourceMappingURL=percent.d.ts.map