import { Logger } from "../../create-logger"; import { Chain } from "../../types"; export declare type Flags = { readonly interactive: boolean; readonly home?: string; readonly keyFile?: string; readonly mnemonic?: string; }; export declare type Options = { readonly home: string; readonly mnemonic: string; }; export declare function keysList(flags: Flags, _logger: Logger): Promise; export declare function getAddresses(registryChains: Record, mnemonic: string): Promise<[chain: string, data: Chain, address: string][]>; export declare function run(options: Options): Promise;