import { PercentageOptionsType } from "./types"; export declare namespace Numbers { /** * Parse a object that is to be a number but is not to zero * else number * @param arg * @returns */ const parseNoneNumber: (arg: any) => number; /** * return the decimal value of the * @param numerator * @param demoniator * @returns */ const percentage: (numerator: number, demoniator: number, options?: PercentageOptionsType) => number; const percentageWithSymbol: (numerator: number, demoniator: number) => string; const add: (...args: number[]) => number; const averge: (...args: number[]) => number; const substract: (...args: number[]) => number; const numberAbbreviation: (value: number, isDecimal?: boolean) => string; /** * Format number with */ const numberFormatter: (value: number) => string; } //# sourceMappingURL=Numbers.d.ts.map