import { Bitcoind } from '../../types'; type ConvertToPsbtParams = { bitcoind: Bitcoind; hexstring: string; permitsigdata?: boolean; iswitness?: boolean; }; /** * converttopsbt "hexstring" ( permitsigdata iswitness ) * * Converts a network serialized transaction to a PSBT. This should be used only with createrawtransaction and fundrawtransaction * createpsbt and walletcreatefundedpsbt should be used for new applications. * */ export declare function convertToPsbt(params: ConvertToPsbtParams): Promise; export {};