import { Instruction, Serializable } from '../internal.js'; /** * Fund Instruction. * * Marks a Coin UTXO to be used for the transaction fee. All of the coin's * motos will be consumed and the coin will be destroyed. */ export declare class FundInstruction extends Instruction { idx: number; constructor(idx: number); } /** * Fund Args Serializer object - implements the Serializable interface. */ export declare const FundArgsSerializer: Serializable; //# sourceMappingURL=fund.d.ts.map