MsgVoteWeighted: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgVoteWeighted;
    encode(message: MsgVoteWeighted, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgVoteWeightedAmino): MsgVoteWeighted;
    fromAminoMsg(object: MsgVoteWeightedAminoMsg): MsgVoteWeighted;
    fromPartial(object: {
        options?: {
            option?: VoteOption;
            weight?: string;
        }[];
        proposalId?: bigint;
        voter?: string;
    }): MsgVoteWeighted;
    fromProtoMsg(message: MsgVoteWeightedProtoMsg): MsgVoteWeighted;
    toAmino(message: MsgVoteWeighted): MsgVoteWeightedAmino;
    toAminoMsg(message: MsgVoteWeighted): MsgVoteWeightedAminoMsg;
    toProto(message: MsgVoteWeighted): Uint8Array;
    toProtoMsg(message: MsgVoteWeighted): MsgVoteWeightedProtoMsg;
}