import { Modules, StateMachine } from 'klayr-framework'; import { TreasurifyParams } from '../types'; export declare class TreasurifyCommand extends Modules.BaseCommand { verify(_context: StateMachine.CommandVerifyContext): Promise; execute(_context: StateMachine.CommandExecuteContext): Promise; schema: { $id: string; type: string; properties: { address: { dataType: string; format: string; fieldNumber: number; }; token: { dataType: string; format: string; fieldNumber: number; }; }; }; }