import 'hd-wallet-ui/styles'; export interface WalletUIOptions { [key: string]: unknown; } export interface MountedWalletUI { openLogin?: () => void | Promise; openAccount?: () => void | Promise; destroy?: () => void | Promise; } export declare function mountWalletUI(host: HTMLElement, options?: WalletUIOptions): Promise; //# sourceMappingURL=wallet-ui.d.ts.map