import { AptosClient } from 'aptos'; import { FetcherModule, ResourcesModule, SwapModule } from './modules'; import { AptosResourceType } from './types/aptos'; export type SdkOptions = { rpcUrl: string; networkOptions: { modules: { CetusClmm: AptosResourceType; CetusIntegrate: AptosResourceType; } & Record; }; }; export declare class SDK { protected _client: AptosClient; protected _resources: ResourcesModule; protected _sdkOptions: SdkOptions; protected _swap: SwapModule; protected _fetcher: FetcherModule; private globalConfig; constructor(options: SdkOptions); get client(): AptosClient; get Resources(): ResourcesModule; get sdkOptions(): SdkOptions; get Fetcher(): FetcherModule; get Swap(): SwapModule; } //# sourceMappingURL=sdk.d.ts.map