import { Bitcoind } from '../../types'; type RestoreWalletParams = { bitcoind: Bitcoind; wallet_name: string; backup_file: string; load_on_startup?: boolean; }; /** * restorewallet "wallet_name" "backup_file" ( load_on_startup ) * * Restores and loads a wallet from backup. * The rescan is significantly faster if a descriptor wallet is restored * and block filters are available (using startup option "-blockfilterindex=1"). * */ export declare function restoreWallet(params: RestoreWalletParams): Promise; export {};