import { Address } from '@ton/core'; import { UIProvider } from '../ui/UIProvider'; export declare class InquirerUIProvider implements UIProvider { private readonly bottomBar; constructor(); write(message: string): void; prompt(message: string): Promise; inputAddress(message: string, fallback?: Address): Promise
; input(message: string): Promise; choose(message: string, choices: T[], display: (v: T) => string): Promise; setActionPrompt(message: string): void; clearActionPrompt(): void; close(): void; }