import { BIish } from '@ckb-lumos/bi'; import { Script } from '@ckb-lumos/base'; import { BI, Cell, helpers } from '@ckb-lumos/lumos'; import { SporeConfig } from '../../../config'; export interface ClusterDataProps { name: string; description: string; } export declare function injectNewClusterOutput(props: { txSkeleton: helpers.TransactionSkeletonType; data: ClusterDataProps; toLock: Script; config?: SporeConfig; updateOutput?(cell: Cell): Cell; capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish); }): { txSkeleton: helpers.TransactionSkeletonType; outputIndex: number; hasId: boolean; };