import { Bitcoind } from '../../types'; type DecodePsbtParams = { bitcoind: Bitcoind; psbt: string; }; /** * decodepsbt "psbt" * * Return a JSON object representing the serialized, base64-encoded partially signed Bitcoin transaction. * */ export declare function decodePsbt(params: DecodePsbtParams): Promise; export {};