import type { ExactNumberType } from '../types'; export declare const exp: (x: number | bigint | string | ExactNumberType, decimals: number) => ExactNumberType; export declare const pow: (_base: number | bigint | string | ExactNumberType, _exponent: number | bigint | string | ExactNumberType, decimals: number) => ExactNumberType;