import * as web3 from "@solana/web3.js"; import { Honeycomb } from "@honeycomb-protocol/hive-control"; type CreateCreateAssetManagerCtx = { serviceIndex: number; project: web3.PublicKey; authority: web3.PublicKey; payer: web3.PublicKey; delegateAuthority?: web3.PublicKey; programId?: web3.PublicKey; }; export declare function createCreateAssetManagerCtx(honeycomb: Honeycomb, args: CreateCreateAssetManagerCtx): { assetManager: web3.PublicKey; tx: web3.Transaction; signers: import("@honeycomb-protocol/hive-control").KeypairLike[]; accounts: web3.PublicKey[]; lookupTables?: web3.AddressLookupTableAccount[]; feePayer?: import("@honeycomb-protocol/hive-control").Signer; }; type CreataeAssetManagerArgs = { programId?: web3.PublicKey; }; export declare function createAssetManager(honeycomb: Honeycomb, args: CreataeAssetManagerArgs): Promise<{ response: import("@honeycomb-protocol/hive-control").ConfirmedContext; assetManagerAddress: web3.PublicKey; }>; export {};