import { Bitcoind, Json } from '../../types'; type WalletCreateFundedPsbtParams = { bitcoind: Bitcoind; inputs?: Array; outputs: Array; locktime?: number; options?: Json; bip32derivs?: boolean; }; /** * walletcreatefundedpsbt ( [{"txid":"hex","vout":n,"sequence":n,"weight":n},...] ) [{"address":amount,...},{"data":"hex"},...] ( locktime options bip32derivs ) * * Creates and funds a transaction in the Partially Signed Transaction format. * Implements the Creator and Updater roles. * All existing inputs must either have their previous output transaction be in the wallet * or be in the UTXO set. Solving data must be provided for non-wallet inputs. * */ export declare function walletCreateFundedPsbt(params: WalletCreateFundedPsbtParams): Promise; export {};