import { CurveType } from '../../../constants'; export declare class CreateCurveDto { type: CurveType; symbol: string; feeBps: number; totalSupply: bigint; minAllocationTokenAmount: bigint; maxAllocationTokenAmount: bigint; marketCapThreshold: bigint; marketCapCurrencyId: string; collateralCurrencyId: string; address: string; coefB: bigint; priceIncrease?: number; collateralCollected?: bigint; maxAntiSnipeBuyLimit?: bigint; }