TallyResult: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): TallyResult;
    encode(message: TallyResult, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: TallyResultAmino): TallyResult;
    fromAminoMsg(object: TallyResultAminoMsg): TallyResult;
    fromPartial(object: {
        abstain?: string;
        no?: string;
        noWithVeto?: string;
        yes?: string;
    }): TallyResult;
    fromProtoMsg(message: TallyResultProtoMsg): TallyResult;
    toAmino(message: TallyResult): TallyResultAmino;
    toAminoMsg(message: TallyResult): TallyResultAminoMsg;
    toProto(message: TallyResult): Uint8Array;
    toProtoMsg(message: TallyResult): TallyResultProtoMsg;
}