import { Entity } from '../../entity'; import { CurveType } from '../../../constants'; import { BaseCurrency } from '../../currency'; export declare class Curve extends Entity { totalSupply: bigint; minAllocationTokenAmount: bigint; maxAllocationTokenAmount: bigint; coefB: bigint; marketCapThreshold: bigint; type: CurveType; symbol: string; address: string; feeBps: number; marketCapCurrency: BaseCurrency; collateralCurrency: BaseCurrency; priceIncrease?: number; collateralCollected?: bigint; maxAntiSnipeBuyLimit?: bigint; }