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