import { Bitcoind } from '../../types.js';
type SignRawTransactionWithWalletParams = {
    bitcoind: Bitcoind;
    hexstring: string;
    prevtxs?: Array<unknown>;
    sighashtype?: string;
};
/**
 * signrawtransactionwithwallet "hexstring" ( [{"txid":"hex","vout":n,"scriptPubKey":"hex","redeemScript":"hex","witnessScript":"hex","amount":amount},...] "sighashtype" )
 *
 * Sign inputs for raw transaction (serialized, hex-encoded).
 * The second optional argument (may be null) is an array of previous transaction outputs that
 * this transaction depends on but may not yet be in the block chain.
 * Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
 *
 */
export declare function signRawTransactionWithWallet(params: SignRawTransactionWithWalletParams): Promise<any>;
export {};
//# sourceMappingURL=sign-raw-transaction-with-wallet.d.ts.map