import { ExternalConfig } from './types/external-config';
declare class BlockchainEngine {
    private readonly wallet;
    constructor(config: ExternalConfig);
    getWallets(): Promise<readonly import("./types/wallet").Wallet[]>;
    createWallet(): Promise<import("./types/wallet").Wallet>;
}
export { BlockchainEngine };
