ValidatorParams: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ValidatorParams;
    encode(message: ValidatorParams, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ValidatorParamsAmino): ValidatorParams;
    fromAminoMsg(object: ValidatorParamsAminoMsg): ValidatorParams;
    fromPartial(object: {
        pubKeyTypes?: string[];
    }): ValidatorParams;
    fromProtoMsg(message: ValidatorParamsProtoMsg): ValidatorParams;
    toAmino(message: ValidatorParams): ValidatorParamsAmino;
    toProto(message: ValidatorParams): Uint8Array;
    toProtoMsg(message: ValidatorParams): ValidatorParamsProtoMsg;
}