import { CommandResultInterface } from "./command-result.interface";
import { CommandInterface } from "./command.interface";
export declare class WalletPhraseDecodeCommand implements CommandInterface {
    private phrase;
    private path;
    private passphrase?;
    constructor(phrase: string, path: string, passphrase?: string | undefined);
    run(): Promise<CommandResultInterface>;
}
