import { CommandInterface } from "./command.interface";
export declare class DecodeTxCommand implements CommandInterface {
    private rawtx;
    constructor(rawtx: string);
    run(): Promise<any>;
}
