import { Dec } from "./decimal"; export declare class DecUtils { static trim(dec: Dec | string): string; protected static tenExponentNs: { [n: string]: Dec; }; static getTenExponentN(n: number): Dec; static getTenExponentNInPrecisionRange(n: number): Dec; /** * @deprecated Use`getTenExponentNInPrecisionRange` */ static getPrecisionDec(precision: number): Dec; }