import * as utxolib from '@bitgo/utxo-lib'; import { Psbt } from '@bitgo/utxo-lib'; import { WatchOnlyAccount, WithdrawBaseOutputUTXO } from '../codecs'; import { LightningOnchainRecipient } from '@bitgo/public-types'; export declare function parsePsbtOutputs(psbt: Psbt, network: utxolib.Network): WithdrawBaseOutputUTXO[]; export declare function verifyChangeAddress(output: WithdrawBaseOutputUTXO, accounts: WatchOnlyAccount[], network: utxolib.Network): void; /** * Validates the funded psbt before creating the signatures for withdraw. */ export declare function validatePsbtForWithdraw(psbtHex: string, network: utxolib.Network, recipients: LightningOnchainRecipient[], accounts: WatchOnlyAccount[]): void; //# sourceMappingURL=parseWithdrawPsbt.d.ts.map