import { NETWORK, TxBuilder } from '../core'; import { ClmmPool } from './entities'; export declare class ClmmPoolManager extends TxBuilder { readonly network: NETWORK; constructor(network?: NETWORK); createPool(pool: ClmmPool): void; createPoolV2(pool: ClmmPool): Promise; createPoolV3(pool: ClmmPool): void; getPoolDetail(poolId: string): Promise; getPoolDetails(poolIds: string[]): Promise; getPools(): Promise; }