import { Decimal } from 'decimal.js'; import { BigNumber } from 'ethers'; export declare type BigNumberish = string | number | BigNumber; export declare const decimal: (x: BigNumberish | Decimal) => Decimal; export declare const fp: (x: number | string | Decimal) => BigNumber; export declare const toWBTC: (x: number | string | Decimal) => BigNumber; export declare const toUSDC: (x: number | string | Decimal) => BigNumber; export declare const toUSDT: (x: number | string | Decimal) => BigNumber; export declare const pct: (x: BigNumber, p: number) => BigNumber; export declare const bn: (x: BigNumberish | Decimal) => BigNumber;