import { BIish } from '@ckb-lumos/bi'; import { PackedSince } from '@ckb-lumos/base'; import { BI, Cell, helpers, HexString } from '@ckb-lumos/lumos'; import { SporeConfig } from '../../../config'; export declare function injectLiveSporeCell(props: { txSkeleton: helpers.TransactionSkeletonType; cell: Cell; config?: SporeConfig; addOutput?: boolean; updateOutput?(cell: Cell): Cell; capacityMargin?: BIish | ((cell: Cell, margin: BI) => BIish); updateWitness?: HexString | ((witness: HexString) => HexString); defaultWitness?: HexString; since?: PackedSince; }): Promise<{ txSkeleton: helpers.TransactionSkeletonType; inputIndex: number; outputIndex: number; }>;