import { JSONValue } from '../types'; export interface AddressKeyGenParams { cliPath: string; } export interface AddressKeyGenRes { skey: JSONValue; vkey: JSONValue; } export declare function addressKeyGenCommand(options: AddressKeyGenParams): Promise;