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