import { InstrumentAmount } from "./instrumentAmount"; type FixedPoint = bigint; declare const FIXED_POINT_DIGITS = 40; declare const FIXED_POINT_DECIMALS = 20; declare function tenPower(exp: number): bigint; declare function fixedPointToDecimal(price: FixedPoint, decimalPoint?: number): string; declare function decimalToFixedPoint(decimal: string, decimalPoint?: number): FixedPoint; declare function scaleInstrumentAmount(instrumentAmount: InstrumentAmount, x: number): InstrumentAmount; export { tenPower, fixedPointToDecimal, decimalToFixedPoint, scaleInstrumentAmount, FIXED_POINT_DECIMALS, FIXED_POINT_DIGITS, }; export type { FixedPoint }; //# sourceMappingURL=fixedPoint.d.ts.map