import { SuiClient } from '@mysten/sui/client'; import type { GenericCLMM } from './generic'; export declare const CLMMType: { readonly Turbos: "Turbos"; }; export type CLMMTypeKeys = (typeof CLMMType)[keyof typeof CLMMType]; export declare class CLMMFactory { static createCLMM(type: CLMMTypeKeys, client: SuiClient, objectId: string): GenericCLMM; }