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