import { BigSource } from "big.js"; import { Decimal, Percentage } from "./basic"; import { AssetConfig } from "./AssetConfig"; import { MintId } from "./MintId"; export declare class AssetPrice extends Decimal { private readonly mintId; private constructor(); static of(mintId: MintId, value: BigSource): AssetPrice; getMintId(): MintId; addFee(pct: Percentage): AssetPrice; print(config: AssetConfig): string; replaceWithValue(value: BigSource): AssetPrice; protected isCompatibleWith(that: AssetPrice): boolean; } //# sourceMappingURL=AssetPrice.d.ts.map