import { Bitcoind } from '../../types.js';
type LoadWalletParams = {
    bitcoind: Bitcoind;
    filename: string;
    load_on_startup?: boolean;
};
/**
 * loadwallet "filename" ( load_on_startup )
 *
 * Loads a wallet from a wallet file or directory.
 * Note that all wallet command-line options used when starting bitcoind will be
 * applied to the new wallet.
 *
 */
export declare function loadWallet(params: LoadWalletParams): Promise<any>;
export {};
//# sourceMappingURL=load-wallet.d.ts.map