import { Bitcoind } from '../../types'; type CreatePsbtParams = { bitcoind: Bitcoind; inputs: Array; outputs: Array; locktime?: number; replaceable?: boolean; }; /** * createpsbt [{"txid":"hex","vout":n,"sequence":n},...] [{"address":amount,...},{"data":"hex"},...] ( locktime replaceable ) * * Creates a transaction in the Partially Signed Transaction format. * Implements the Creator role. * */ export declare function createPsbt(params: CreatePsbtParams): Promise; export {};