import { Modules, StateMachine } from 'klayr-framework';
import { BoostVoteParams } from '../types';
export declare class BoostVoteCommand extends Modules.BaseCommand {
    verify(_context: StateMachine.CommandVerifyContext<BoostVoteParams>): Promise<StateMachine.VerificationResult>;
    execute(_context: StateMachine.CommandExecuteContext<BoostVoteParams>): Promise<void>;
    schema: import("@swaptoshi/utils/dist/types").TypedSchema<BoostVoteParams>;
}
