import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=decode-psbt.d.ts.map