import { BusinessLogicMap } from '@dfns/cloud-library'; import { BlockchainInterface, DfnsSigner, WalletInterface } from './types'; export declare const createRouter: () => BusinessLogicMap; export declare function registerPrivateRoutes(businessLogicMap: BusinessLogicMap, network: string, walletImplementation: { new (signer: DfnsSigner): WalletInterface; }, blockchainImplementation?: { new (): BlockchainInterface; }): void;