import { Bitcoind } from '../../types'; type AnalyzePsbtParams = { bitcoind: Bitcoind; psbt: string; }; /** * analyzepsbt "psbt" * * Analyzes and provides information about the current status of a PSBT and its inputs * */ export declare function analyzePsbt(params: AnalyzePsbtParams): Promise; export {};