import { DevUtilsContract } from '@0x/contract-wrappers'; import { WriteableProviderType } from './types'; export declare const prompt: { promptForInputAsync(message: string): Promise<{ input: string; }>; promptForEthereumNodeRPCUrlAsync(): Promise<{ rpcUrl: string; address: string; }>; promptForMnemonicDetailsAsync(): Promise<{ mnemonic: string; baseDerivationPath: string; }>; promptForPrivateKeyAsync(): Promise<{ privateKey: string; }>; selectWriteableProviderAsync(): Promise<{ providerType: WriteableProviderType; }>; selectAddressAsync(addresses: string[], devUtils: DevUtilsContract): Promise<{ selectedAddress: string; }>; };